Browse Source

CreateNewBlock was not adding in transaction fees.

0.8
Gavin Andresen 13 years ago
parent
commit
68649bef93
  1. 5
      src/main.cpp

5
src/main.cpp

@ -3073,8 +3073,8 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) @@ -3073,8 +3073,8 @@ CBlock* CreateNewBlock(CReserveKey& reservekey)
if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
continue;
int64 nFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
if (nFees < nMinFee)
int64 nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
if (nTxFees < nMinFee)
continue;
nTxSigOps += tx.GetP2SHSigOpCount(mapInputs);
@ -3091,6 +3091,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) @@ -3091,6 +3091,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey)
nBlockSize += nTxSize;
++nBlockTx;
nBlockSigOps += nTxSigOps;
nFees += nTxFees;
// Add transactions that depend on this one to the priority queue
uint256 hash = tx.GetHash();

Loading…
Cancel
Save