We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ce2f3d commit 22fd04bCopy full SHA for 22fd04b
src/miner.h
@@ -158,7 +158,6 @@ class BlockAssembler
158
struct Options {
159
Options();
160
size_t nBlockMaxWeight;
161
- size_t nBlockMaxSize;
162
CFeeRate blockMinFeeRate;
163
};
164
src/test/miner_tests.cpp
@@ -32,7 +32,6 @@ static BlockAssembler AssemblerForTest(const CChainParams& params) {
32
BlockAssembler::Options options;
33
34
options.nBlockMaxWeight = MAX_BLOCK_WEIGHT;
35
- options.nBlockMaxSize = MAX_BLOCK_SERIALIZED_SIZE;
36
options.blockMinFeeRate = blockMinFeeRate;
37
return BlockAssembler(params, options);
38
}
0 commit comments