Bitcoin Forum
June 21, 2024, 05:38:55 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 [26] 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 »
501  Local / Criptomoedas Alternativas / Re: CommunityCoin(COMM)|Distribuição Justa e Gratuita|Pure PoS|Junte-se à Comunidade on: April 16, 2014, 05:06:38 PM
Mr. Shake, atualização postada no OP com os devidos créditos! Wink

Muito obrigado EbonHawk, você é D+! Agora a próxima só quando confirmarem o bloqueio da carteira morta no código.

Shake, muito obrigado sua doação foi estupidamente grande!

Muito obrigado meu amigo!

Não precisa agradecer, agora você tem algumas para não ficar tão para trás, vai juntado PoS que para mim está bom!

E já vou abusar do seu Know How, tenho uma dúvida que acho que você pode me ajudar, já mandei por mp.

Att

Respondido meu amigo, caso tenha alguma dúvida será uma honra ajudar.
502  Local / Mineração em Geral / Re: [VENDO] Mineradora Gridseed USB 8G/300K - Litecoin e Bitcoin on: April 16, 2014, 12:37:09 PM
disponibilidade de entrega quando?
503  Local / Português (Portuguese) / Re: [PRÉ-ANÚNCIO] Exchange Brasileiro de Bitcoins, Bitfication! on: April 16, 2014, 12:34:09 PM
Thiago, achou o desenvolvedor Ruby?

Novidades?


Abraço
504  Local / Criptomoedas Alternativas / Re: CommunityCoin(COMM)|Distribuição Justa e Gratuita|Pure PoS|Junte-se à Comunidade on: April 16, 2014, 12:06:38 PM
Quote
Você é gente fina Leandro, aqui vai uma doação para sua carteira enquanto espera!

Att
Shake, muito obrigado sua doação foi estupidamente grande!

Muito obrigado meu amigo!
505  Local / Criptomoedas Alternativas / Re: CommunityCoin(COMM)|Distribuição Justa e Gratuita|Pure PoS|Junte-se à Comunidade on: April 16, 2014, 12:35:19 AM
to tentando, mesmo chegando atrasado! ¬¬
506  Alternate cryptocurrencies / Altcoin Discussion / Re: The genesis block is hurting my soul.. Please help [25 MegaCoin bounty] on: April 14, 2014, 06:34:48 PM
81 blocks.
I stop the coin, recompile now and try again.

Thanks
507  Alternate cryptocurrencies / Altcoin Discussion / Re: The genesis block is hurting my soul.. Please help [25 MegaCoin bounty] on: April 14, 2014, 05:55:19 PM
Are ok, I get my test-coin running and ok, but I'm receiving too much coins that block permit.

My Genesis:
Code:
// Genesis block
        const char* pszTimestamp = "NY Times 13/Apr/2014 Obama Lets N.S.A. Exploit Some Internet Flaws, Officials Say";
        CTransaction txNew;
        txNew.vin.resize(1);
        txNew.vout.resize(1);
        txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
        txNew.vout[0].nValue = 3 * COIN;
        txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG;
        CBlock block;
        block.vtx.push_back(txNew);
        block.hashPrevBlock = 0;
        block.hashMerkleRoot = block.BuildMerkleTree();
        block.nVersion = 1;
        block.nTime    = 1397432434;
        block.nBits    = 0x1e0ffff0;
        block.nNonce   = 793395;

        if (fTestNet)
        {
            block.nTime    = 1397431832;
            block.nNonce   = 2434602;
        }

nSubsidy and time to create a new coin:
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 3 * COIN;

    // Subsidy is cut in half every 840000 blocks, which will occur approximately
    nSubsidy >>= (nHeight / 840000); // XXX: 840k blocks

    return nSubsidy + nFees;
}

static const int64 nTargetTimespan = 8 * 60 * 60; // XXX: 8 hours target diff
static const int64 nTargetSpacing = 10 * 60; // XXX: 10 minutes to generate a new block
static const int64 nInterval = nTargetTimespan / nTargetSpacing;

main.h file with coins:
Code:
/** The maximum allowed size for a serialized block, in bytes (network rule) */
static const unsigned int MAX_BLOCK_SIZE = 1000000;                      // 1000KB block hard limit
/** Obsolete: maximum size for mined blocks */
static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/4;         // 250KB  block soft limit
/** Default for -blockmaxsize, maximum size for mined blocks **/
static const unsigned int DEFAULT_BLOCK_MAX_SIZE = 250000;
/** Default for -blockprioritysize, maximum space for zero/low-fee transactions **/
static const unsigned int DEFAULT_BLOCK_PRIORITY_SIZE = 17000;
/** The maximum size for transactions we're willing to relay/mine */
static const unsigned int MAX_STANDARD_TX_SIZE = 100000;
/** The maximum allowed number of signature check operations in a block (network rule) */
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
/** The maximum number of orphan transactions kept in memory */
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
/** The maximum number of entries in an 'inv' protocol message */
static const unsigned int MAX_INV_SZ = 50000;
/** The maximum size of a blk?????.dat file (since 0.8) */
static const unsigned int MAX_BLOCKFILE_SIZE = 0x8000000; // 128 MiB
/** The pre-allocation chunk size for blk?????.dat files (since 0.8) */
static const unsigned int BLOCKFILE_CHUNK_SIZE = 0x1000000; // 16 MiB
/** The pre-allocation chunk size for rev?????.dat files (since 0.8) */
static const unsigned int UNDOFILE_CHUNK_SIZE = 0x100000; // 1 MiB
/** Fake height value used in CCoins to signify they are only in the memory pool (since 0.8) */
static const unsigned int MEMPOOL_HEIGHT = 0x7FFFFFFF;
/** Dust Soft Limit, allowed with additional fee per output */
static const int64 DUST_SOFT_LIMIT = 100000; // 0.001 OBM
/** Dust Hard Limit, ignored as wallet inputs (mininput default) */
static const int64 DUST_HARD_LIMIT = 1000;   // 0.00001 OBM mininput
/** No amount larger than this (in satoshi) is valid */
static const int64 MAX_MONEY = 5040000 * COIN; // 5 Million
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
/** Coinbase transaction outputs can only be spent after this number of new blocks (network rule) */
static const int COINBASE_MATURITY = 100;
/** Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp. */
static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov  5 00:53:20 1985 UTC
/** Maximum number of script-checking threads allowed */
static const int MAX_SCRIPTCHECK_THREADS = 16;
#ifdef USE_UPNP
static const int fHaveUPnP = true;
#else
static const int fHaveUPnP = false;
#endif


extern CScript COINBASE_FLAGS;
dPriority on main.h
Code:
static bool AllowFree(double dPriority)
    {
        // Large (in bytes) low-priority (new, small-coin) transactions
        // need a fee.
        return dPriority > COIN * 144 / 250;
    }

Why my coins are generating new blocks every 1 or 2 minutes?


Thanks


508  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 13, 2014, 01:52:16 AM
povo reclama, reclama mas ainda quer minerar.

Sinceramente não entendo BR, sendo o que for, sendo golpe ou não porque os reclamões continuam postando?

Faço parte la do BTC MMA, rola muita comédia e tal, mas até lá pararam de zoar.

Chega uma hora que fica sem graça!
509  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 12, 2014, 01:40:03 PM
ATUALIZAÇÃO REF. BLOCOS PoW
Bom dia.
Identificamos a razão da rede não estar conseguindo resolver blocos PoW:
Em 7 de abril às 6:36 UTC foi criado o bloco 109561 uma hora no futuro ( http://tools.hashdollar.org/explorer/index.php?block_height=109561&submit=Jump+To+Block ), travando o retarget no bloco 109563 em diff 1 aproximadamente. Para resolver o próximo bloco PoW, acreditamos que seja necessária uma rede de 70MH/s a 110MH/s. Por a rede HashDollar estar funcionando normalmente em PoS, e sendo que a não geração de novos blocos PoW limita a quantidade de XHD emitidos no Mercado, possibilitando uma valorização mais rápida, tomamos a decisão de não alterar o protocolo neste momento.
Faremos alterações na próxima versão da wallet para proteger contra a criação de outros blocos maliciosos no futuro, evitando assim novos ataques como o do dia 7.
Outrossim, solicitamos aos usuários que possuem XHD, que mantenham suas carteiras abertas para continuarem gerando blocos PoS, e recebendo os "juros".
Att. Equipe HashDollar
então basicamente não vamos ter mineração por um prazo indeterminado pois não sabem como arrumar o erro ... e vão criar uma nova wallet ou fork pra concertar .... ou seja quem tem moedas agora tem quem num tem ... se lasque ou compre ...

não exatamente nessas palavras, mas o bom é que pode valorizar!
510  Alternate cryptocurrencies / Altcoin Discussion / Re: The genesis block is hurting my soul.. Please help [25 MegaCoin bounty] on: April 12, 2014, 01:34:56 PM
Quote
Your missing a step from the guide, re-read it closely. Just mind you, if you intent to release a coin; know that it will change your life - don't take short cuts, and always be professional (my 2 cents) That being said...You need to populate your 0x lines after error one.

1) Restart
2) New TimeStamp
3) 0x
4) Error
5) Populate
6) Follow guide Wink


Thank you, but the error do not show the Merkle on the error (so, the error quoted is debug.log file?).

I will re-read the tutorial, I'm autodidact (correct write?) and on my official language don't have tutorials.

Thanks for your patience.

Quote
And most importantly: learn to code so you know what you are doing.

It doesn't matter right now when you're playing with the technology, but if you're serious about crypto,
decent programming skills are a must.

So, my intention is just for study case, I not  show the name of coin because people can copy before I finish! Smiley

Thanks a lot for help, I will begin again!


Recompiled, same error...

So, what is the Merkle and What is the Genesis here?

Code:
2014-04-12 20:56:32 



















2014-04-12 20:56:32 XXX version v0.8.6.2-g10d589b-beta (Thu, 3 Apr 2014 21:58:44 -1000)
2014-04-12 20:56:32 Using OpenSSL version OpenSSL 1.0.1g 7 Apr 2014
2014-04-12 20:56:32 Default data directory C:\Users\Leandro\AppData\Roaming\XXX
2014-04-12 20:56:32 Using data directory C:\Users\Leandro\AppData\Roaming\XXX
2014-04-12 20:56:32 Using at most 125 connections (2048 file descriptors available)
2014-04-12 20:56:32 Using 2 threads for script verification
2014-04-12 20:56:32 init message: Verificando carteira...
2014-04-12 20:56:32 dbenv.open LogDir=C:\Users\Leandro\AppData\Roaming\XXX\database ErrorFile=C:\Users\Leandro\AppData\Roaming\XXX\db.log
2014-04-12 20:56:32 Bound to [::]:25992
2014-04-12 20:56:32 Bound to 0.0.0.0:25992
2014-04-12 20:56:32 init message: Carregando índice de blocos...
2014-04-12 20:56:32 Opening LevelDB in C:\Users\Leandro\AppData\Roaming\XXX\blocks\index
2014-04-12 20:56:32 Opened LevelDB successfully
2014-04-12 20:56:32 Opening LevelDB in C:\Users\Leandro\AppData\Roaming\XXX\chainstate
2014-04-12 20:56:32 Opened LevelDB successfully
2014-04-12 20:56:32 LoadBlockIndexDB(): last block file = 0
2014-04-12 20:56:32 LoadBlockIndexDB(): transaction index disabled
2014-04-12 20:56:32 Initializing databases...
2014-04-12 20:56:32 a9d4e70111de34a5fe4d805b73a8c9d47467ee0cc24a8ee8b0f26ae5c7573a0a
2014-04-12 20:56:32 0000000000000000000000000000000000000000000000000000000000000000
2014-04-12 20:56:32 ed7ce3a32498164f1182dcfefa4aaf39a642e8eb9c258bc9555cc7b9e6e7e76f
2014-04-12 20:56:32 CBlock(hash=a9d4e70111de34a5fe4d805b73a8c9d47467ee0cc24a8ee8b0f26ae5c7573a0a, input=0100000000000000000000000000000000000000000000000000000000000000000000006fe7e7e6b9c75c55c98b259cebe842a639af4afafedc82114f169824a3e37ced00000000f0ff0f1e00000000, PoW=f3fc25ec33ed2050cc0af566733116790642cc48b488d9e37fb084b8ef9e6efd, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=ed7ce3a32498164f1182dcfefa4aaf39a642e8eb9c258bc9555cc7b9e6e7e76f, nTime=0, nBits=1e0ffff0, nNonce=0, vtx=1)
2014-04-12 20:56:32   CTransaction(hash=ed7ce3a32498164f1182dcfefa4aaf39a642e8eb9c258bc9555cc7b9e6e7e76f, ver=1, vin.size=1, vout.size=1, nLockTime=0)
    CTxIn(COutPoint(0000000000000000000000000000000000000000000000000000000000000000, 4294967295), coinbase 04ffff001d01044c604e592054696d65732031322f4170722f32303134204f62616d612c20436974696e67204e6577204c6177732c20536179732074686520472e4f2e502e204973204d6f76696e6720746f20526573747269637420566f74696e6720526967687473)
    CTxOut(nValue=3.00000000, scriptPubKey=04678afdb0fe5548271967f1a67130)
  vMerkleTree: ed7ce3a32498164f1182dcfefa4aaf39a642e8eb9c258bc9555cc7b9e6e7e76f




511  Alternate cryptocurrencies / Altcoin Discussion / Re: The genesis block is hurting my soul.. Please help [25 MegaCoin bounty] on: April 11, 2014, 05:48:50 PM
Testing... seems wonderful! Cheesy

UPDATE:

Hi,

didn't read all the thread. But this will help you with Litecoin clients:

(this work only if you already did the basis (=change your timestamp, ntime, ect...) and ready to mine your merkle/genesis.)

- Open main.cpp
- Go to "bool InitBlockIndex()"
- Search "block.print();"
- ABOVE, you copy this:

Code:
	// This part was used to generate the genesis block.
// Uncomment to use it again.

// If genesis block hash does not match, then generate new genesis hash.
if (true && block.GetHash() != hashGenesisBlock)
{
printf("Searching for genesis block...\n");
// This will figure out a valid hash and Nonce if you're
// creating a different genesis block:
uint256 hashTarget = CBigNum().SetCompact(block.nBits).getuint256();
uint256 thash;
char scratchpad[SCRYPT_SCRATCHPAD_SIZE];
loop
{
#if defined(USE_SSE2)
// Detection would work, but in cases where we KNOW it always has SSE2,
// it is faster to use directly than to use a function pointer or conditional.
#if defined(_M_X64) || defined(__x86_64__) || defined(_M_AMD64) || (defined(MAC_OSX) && defined(__i386__))
// Always SSE2: x86_64 or Intel MacOS X
scrypt_1024_1_1_256_sp_sse2(BEGIN(block.nVersion), BEGIN(thash), scratchpad);
#else
// Detect SSE2: 32bit x86 Linux or Windows
scrypt_1024_1_1_256_sp(BEGIN(block.nVersion), BEGIN(thash), scratchpad);
#endif
#else
// Generic scrypt
scrypt_1024_1_1_256_sp_generic(BEGIN(block.nVersion), BEGIN(thash), scratchpad);
#endif
if (thash <= hashTarget)
break;
if ((block.nNonce & 0xFFF) == 0)
{
printf("nonce %08X: hash = %s (target = %s)\n", block.nNonce, thash.ToString().c_str(), hashTarget.ToString().c_str());
}
++block.nNonce;
if (block.nNonce == 0)
{
printf("NONCE WRAPPED, incrementing time\n");
++block.nTime;
}
}
printf("block.nTime = %u \n", block.nTime);
printf("block.nNonce = %u \n", block.nNonce);
printf("block.GetHash = %s\n", block.GetHash().ToString().c_str());
}

This is a script that doing all the annoying job for you.
How to use it ?

- First you need to empty your merkleroot, genesis and nnonce (merkle = "0x", genesis="0x", nonce=0.
- Then you compil and start the client.
- The client will show an error but show the merkleroot.
- Now change you merkle root variable for your new one.
- Compil again and start again.
- Your client will try to mine your genesis block, this operation can be very fast as she can be very slow.
- After this, the client will show again an error but give you the genesis (gethash) and nonce.
- reopen your client script, change the genesis and nonce (and verify your ntime).
- REMOVE the script I gave you (or comment).
- Compil and enjoy Wink

I don't know if someone got the bounty, but i'm not looking after, just helping =)

I make this steps but when I open the client do not show the MerkleRoot that you say - The client will show an error but show the merkleroot. but I copy the Merkle that have on debug.log and now I will compile.. I will send news.

Thanks

NEW UPDATE - REASON: TESTS



Why I receive this error?

My debug.log file:
Code:
2014-04-11 18:44:00 



















2014-04-11 18:44:00 XXX version v0.8.6.2-g10d589b-beta (Thu, 3 Apr 2014 21:58:44 -1000)
2014-04-11 18:44:00 Using OpenSSL version OpenSSL 1.0.1g 7 Apr 2014
2014-04-11 18:44:00 Default data directory C:\Users\Leandro\AppData\Roaming\XXX
2014-04-11 18:44:00 Using data directory C:\Users\Leandro\AppData\Roaming\XXX
2014-04-11 18:44:00 Using at most 125 connections (2048 file descriptors available)
2014-04-11 18:44:00 Using 2 threads for script verification
2014-04-11 18:44:00 init message: Verificando carteira...
2014-04-11 18:44:00 dbenv.open LogDir=C:\Users\Leandro\AppData\Roaming\XXX\database ErrorFile=C:\Users\Leandro\AppData\Roaming\XXX\db.log
2014-04-11 18:44:00 Bound to [::]:25991
2014-04-11 18:44:00 Bound to 0.0.0.0:25991
2014-04-11 18:44:00 init message: Carregando índice de blocos...
2014-04-11 18:44:00 Opening LevelDB in C:\Users\Leandro\AppData\Roaming\XXX\blocks\index
2014-04-11 18:44:00 Opened LevelDB successfully
2014-04-11 18:44:00 Opening LevelDB in C:\Users\Leandro\AppData\Roaming\XXX\chainstate
2014-04-11 18:44:00 Opened LevelDB successfully
2014-04-11 18:44:00 LoadBlockIndexDB(): last block file = 0
2014-04-11 18:44:00 LoadBlockIndexDB(): transaction index disabled
2014-04-11 18:44:00 Initializing databases...
2014-04-11 18:44:00 b103277b47c133eeb6b58486d9bec984dee754bfda81010844221637e58113b9
2014-04-11 18:44:00 0000000000000000000000000000000000000000000000000000000000000000
2014-04-11 18:44:00 53e54cfd3fc44b32e0291590b93b55fd729ff5a7570b3a6cf2063c91766f8a29
2014-04-11 18:44:00 CBlock(hash=b103277b47c133eeb6b58486d9bec984dee754bfda81010844221637e58113b9, input=010000000000000000000000000000000000000000000000000000000000000000000000298a6f76913c06f26c3a0b57a7f59f72fd553bb9901529e0324bc43ffd4ce55399004853f0ff0f1e00000000, PoW=daf38cbceaac5a570916ae3b11bcb32ce288631677bad01fe41b54978af520ba, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=53e54cfd3fc44b32e0291590b93b55fd729ff5a7570b3a6cf2063c91766f8a29, nTime=1397227673, nBits=1e0ffff0, nNonce=0, vtx=1)
2014-04-11 18:44:00   CTransaction(hash=53e54cfd3fc44b32e0291590b93b55fd729ff5a7570b3a6cf2063c91766f8a29, ver=1, vin.size=1, vout.size=1, nLockTime=0)
    CTxIn(COutPoint(0000000000000000000000000000000000000000000000000000000000000000, 4294967295), coinbase 04ffff001d010444323031342f30342f313120427564676574204368696566204973204f62616d61e28099732043686f696365206173204e6577204865616c7468205365637265746172792e)
    CTxOut(nValue=3.00000000, scriptPubKey=04678afdb0fe5548271967f1a67130)
  vMerkleTree: 53e54cfd3fc44b32e0291590b93b55fd729ff5a7570b3a6cf2063c91766f8a29

Thanks

New Update - REASON: Other error

So, I've cleaned the Merkle and the Genesis to 0x and now I receive this message:
512  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 11, 2014, 04:39:12 PM
101 páginas. Keep watching...

E a rede heim, acho que hoje volta.

Engraçado Sr. Machado... a minha carteira está gerando valores POS desde que deu pau na rede.

Será que os blocos serão válidos??



Mano, PoS é uma disputa acirrada, não sei no XHD mas na maioria das moedas, PoS tem só um válido, é a corrida contra o tempo, a cada bloco PoS um é válido

Abraços
513  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 11, 2014, 04:12:04 PM
101 páginas. Keep watching...

E a rede heim, acho que hoje volta.
514  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 10, 2014, 07:46:45 PM
só viajando aqui mesmo! Tongue
515  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 10, 2014, 05:59:53 PM
Pensaaaa:
516  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 10, 2014, 12:25:57 PM
Bottlecaps ta bastante profitable...hehehe


HashDollar to esperando e trabalhando aqui para criar ferramentas! Vamo que vamo!
517  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 10, 2014, 02:15:55 AM
ESQUEÇA TUDO QUE VOCÊ JÁ VIU !!!

Venha para Blackcoin, comunidade sólida, moeda de verdade.









Blackcoin tem potêncial para mais de U$ 2,00 dólares, moeda ainda muito barata, custa apenas U$ 0,04 centavos.

BlackCoin não tem pré mineração, mais a mineração acabou a 1 mês, moeda valia 500 Sats , hoje 9500 sats.

Web site: http://www.blackcoin.co/
https://bitcointalk.org/index.php?topic=469640.0
Forum: http://blackcointalk.com/


1º Moeda altcoin a ser adicionada ao sistema de pagamentos digital Coinkite.

Não perca esta oportunidade!!!!

isso é que é paraguaio... Fazendo propaganda aberta em outra noticia que tem 100 páginas!

Seguinte, não voltei mas estou sim lutando como posso para valorizar, afinal tenho interesse em ganhar também, como também luto para valorizar cryptometh, bottlecaps, etc..

Creio que ainda há chance! Cheesy
518  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 09, 2014, 08:11:59 PM
MARKET COINANO:

https://www.coinano.com/market?cid=1491
519  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 09, 2014, 01:07:47 AM
oque eu tenho a dizer:




HAHAHA

esse forum deveria ter um CURTIR! kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
520  Local / Criptomoedas Alternativas / Re: HashDollar Wallet disponivel! Pre-release para mineir. brasileiros diff 0.000244 on: April 09, 2014, 12:50:04 AM
Rumo às 100 páginas de discussão! GOGOGOOGO

ufa! acompanhei 100 páginas de muito mimimi

Não sei se XHD é scam pra roubar Bitcoin
ou se realmente é coisa séria

só sei que pra esse "povo do bananal" o que faria sucesso seria merda. Cupom de 50% de desconto num saco de esterco.
pérolas aos porcos?



também não compensa generalizar
existem pessoas que apenas nasceram no Brasil mas não são Brasileiros! kkkkk
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 [26] 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!