Remove nBlockMaxSize from miner opt struct as it is no longer used.
This commit is contained in:
parent
4ce2f3d0d3
commit
22fd04beb9
2 changed files with 0 additions and 2 deletions
|
@ -158,7 +158,6 @@ public:
|
||||||
struct Options {
|
struct Options {
|
||||||
Options();
|
Options();
|
||||||
size_t nBlockMaxWeight;
|
size_t nBlockMaxWeight;
|
||||||
size_t nBlockMaxSize;
|
|
||||||
CFeeRate blockMinFeeRate;
|
CFeeRate blockMinFeeRate;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,6 @@ static BlockAssembler AssemblerForTest(const CChainParams& params) {
|
||||||
BlockAssembler::Options options;
|
BlockAssembler::Options options;
|
||||||
|
|
||||||
options.nBlockMaxWeight = MAX_BLOCK_WEIGHT;
|
options.nBlockMaxWeight = MAX_BLOCK_WEIGHT;
|
||||||
options.nBlockMaxSize = MAX_BLOCK_SERIALIZED_SIZE;
|
|
||||||
options.blockMinFeeRate = blockMinFeeRate;
|
options.blockMinFeeRate = blockMinFeeRate;
|
||||||
return BlockAssembler(params, options);
|
return BlockAssembler(params, options);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue