Eligius pool and 'generated' bitcoins

14

1

I mine at Eligius pool and sometimes a new transaction appears in my bitcoin client labeled 'Generated'. Why does this happen? Do I also get these 'Generated' bitcoins if I use an e-wallet's address for mining?

nmat

Posted 2011-08-31T01:32:42.637

Reputation: 10 879

Answers

8

The special ‘coinbase’ transaction, which begins every block of the main chain, usually contains a single output with a single address (owned by the person or the pool that generated the transaction).

However, the fact that this transaction usually contains a single output is not enforced by the system. You may have a look at what an Eligius block looks like. The Eligius pool uses this to credit its users directly.

It's not possible¹ to include inputs in these transactions (the block would be invalid otherwise). The only special input is the 25BTC one (currently, every 4 years this value will decrease) granted to the block founder.


1. In main.h, function IsCoinBase(): return (vin.size() == 1 && vin[0].prevout.IsNull());

Stéphane Gimenez

Posted 2011-08-31T01:32:42.637

Reputation: 4 746

8

Generated coins mean you are getting new bitcoins that were generated with the block. Eligius has the pool setup to pay you out when you have over a certain amount of work put in at an address. Rather than having all 50 coins go to his address and then pay you out, he pays everyone out directly by having the coins paid out upon generation.

tysat

Posted 2011-08-31T01:32:42.637

Reputation: 1 421

1

For the second part of your question:

Some EWallets can handle generated bitcoins, some can't -- depending on what client they are using. If the wallet refuses to support these, you could losse funds. i.e., it is best to not use an EWallet when mining on Eligius, P2Pool or any other pool that generates coins directly to the address supplied by the miner.

Stephen Gornick

Posted 2011-08-31T01:32:42.637

Reputation: 26 118