mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
Bugfix: off-by-one in priority calculation
This commit is contained in:
parent
9e957fb3b1
commit
1e64c2d585
1 changed files with 1 additions and 1 deletions
|
@ -3830,7 +3830,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey)
|
|||
int64 nValueIn = coins.vout[txin.prevout.n].nValue;
|
||||
nTotalIn += nValueIn;
|
||||
|
||||
int nConf = pindexPrev->nHeight - coins.nHeight;
|
||||
int nConf = pindexPrev->nHeight - coins.nHeight + 1;
|
||||
|
||||
dPriority += (double)nValueIn * nConf;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue