diff options
author | Suhas Daftuar <sdaftuar@chaincode.com> | 2016-07-18 12:40:28 -0400 |
---|---|---|
committer | Suhas Daftuar <sdaftuar@chaincode.com> | 2016-07-18 12:42:41 -0400 |
commit | 682aa0f289c550c029733966a2ce3449e4a471df (patch) | |
tree | aab4de54a8955fc566aac32174d7cba130b99733 /src/miner.cpp | |
parent | 5e3557b8e36308a27dbeb528569abe638c4d01dd (diff) |
Scale legacy sigop count in CreateNewBlock
Diffstat (limited to 'src/miner.cpp')
-rw-r--r-- | src/miner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/miner.cpp b/src/miner.cpp index 8153fb9f9e..3f6fe915a7 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -187,7 +187,7 @@ CBlockTemplate* BlockAssembler::CreateNewBlock(const CScript& scriptPubKeyIn) UpdateTime(pblock, chainparams.GetConsensus(), pindexPrev); pblock->nBits = GetNextWorkRequired(pindexPrev, pblock, chainparams.GetConsensus()); pblock->nNonce = 0; - pblocktemplate->vTxSigOpsCost[0] = GetLegacySigOpCount(pblock->vtx[0]); + pblocktemplate->vTxSigOpsCost[0] = WITNESS_SCALE_FACTOR * GetLegacySigOpCount(pblock->vtx[0]); CValidationState state; if (!TestBlockValidity(state, chainparams, *pblock, pindexPrev, false, false)) { |