diff options
| author | Gregory Maxwell <[email protected]> | 2017-09-18 23:40:38 +0000 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2017-09-18 23:40:38 +0000 |
| commit | 22fd04beb9e7ee4c8576a2f43796200faa780938 (patch) | |
| tree | ed3085c30755b9a7ef1733fe7f41c7a1d3037c2a /src/test/miner_tests.cpp | |
| parent | Merge #11323: mininode: add an optimistic write and disable nagle (diff) | |
| download | discoin-22fd04beb9e7ee4c8576a2f43796200faa780938.tar.xz discoin-22fd04beb9e7ee4c8576a2f43796200faa780938.zip | |
Remove nBlockMaxSize from miner opt struct as it is no longer used.
Diffstat (limited to 'src/test/miner_tests.cpp')
| -rw-r--r-- | src/test/miner_tests.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/miner_tests.cpp b/src/test/miner_tests.cpp index 9fa9a8509..41e0626eb 100644 --- a/src/test/miner_tests.cpp +++ b/src/test/miner_tests.cpp @@ -32,7 +32,6 @@ static BlockAssembler AssemblerForTest(const CChainParams& params) { BlockAssembler::Options options; options.nBlockMaxWeight = MAX_BLOCK_WEIGHT; - options.nBlockMaxSize = MAX_BLOCK_SERIALIZED_SIZE; options.blockMinFeeRate = blockMinFeeRate; return BlockAssembler(params, options); } |