diff options
author | John Newbery <john@johnnewbery.com> | 2018-11-26 11:17:38 -0500 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-12-10 16:42:14 -0500 |
commit | 0025c9eae41654c204ecf31f7e134b91dc473a75 (patch) | |
tree | 4f02f77f87d09301d777b64287203849f0fe18cc /src/miner.h | |
parent | 5f23460c7e316fe7c944680f3feff07ebb867f70 (diff) |
[mining] segwit option must be set in GBT
Calling getblocktemplate without the segwit rule specified is most
likely a client error, since it results in lower fees for the miner.
Prevent this client error by failing getblocktemplate if called without
the segwit rule specified.
Diffstat (limited to 'src/miner.h')
-rw-r--r-- | src/miner.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/miner.h b/src/miner.h index 8cdcf7133b..44c50b01ad 100644 --- a/src/miner.h +++ b/src/miner.h @@ -157,7 +157,7 @@ public: BlockAssembler(const CChainParams& params, const Options& options); /** Construct a new block template with coinbase to scriptPubKeyIn */ - std::unique_ptr<CBlockTemplate> CreateNewBlock(const CScript& scriptPubKeyIn, bool fMineWitnessTx=true); + std::unique_ptr<CBlockTemplate> CreateNewBlock(const CScript& scriptPubKeyIn); private: // utility functions |