diff options
Diffstat (limited to 'src/miner.h')
-rw-r--r-- | src/miner.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/miner.h b/src/miner.h index 625ffe97f7..c105d07c23 100644 --- a/src/miner.h +++ b/src/miner.h @@ -159,7 +159,16 @@ private: const CChainParams& chainparams; public: - BlockAssembler(const CChainParams& chainparams); + struct Options { + Options(); + size_t nBlockMaxWeight; + size_t nBlockMaxSize; + CFeeRate blockMinFeeRate; + }; + + BlockAssembler(const CChainParams& params); + BlockAssembler(const CChainParams& params, const Options& options); + /** Construct a new block template with coinbase to scriptPubKeyIn */ std::unique_ptr<CBlockTemplate> CreateNewBlock(const CScript& scriptPubKeyIn); |