Which function is called to mine a block, broadcast the newly mined block & receive a newly mined block?

2

1

I am trying to understand the control flow and handling of transactions in the memory pool.

somesh

Posted 2015-05-12T19:44:12.817

Reputation: 397

These are all different functions. Could you be a little more specific?Nick ODell 2015-05-13T02:20:58.680

@NickODell When a new transaction is received it is added to the memory pool (after checking for conflicts). While mining, only the transactions which are in the pool are considered. What happens to the transactions after they are included to a newly mined block? Are they moved to another data structure from pool? If yes, Which function handles it ?somesh 2015-05-14T05:41:02.423

No answers