manual fixes on #9868
This commit is contained in:
parent
3ddf3dc62b
commit
f9c585776b
@ -165,7 +165,6 @@ private:
|
||||
public:
|
||||
struct Options {
|
||||
Options();
|
||||
size_t nBlockMaxWeight;
|
||||
size_t nBlockMaxSize;
|
||||
CFeeRate blockMinFeeRate;
|
||||
};
|
||||
|
@ -31,8 +31,7 @@ static CFeeRate blockMinFeeRate = CFeeRate(DEFAULT_BLOCK_MIN_TX_FEE);
|
||||
static BlockAssembler AssemblerForTest(const CChainParams& params) {
|
||||
BlockAssembler::Options options;
|
||||
|
||||
options.nBlockMaxWeight = MAX_BLOCK_WEIGHT;
|
||||
options.nBlockMaxSize = MAX_BLOCK_SERIALIZED_SIZE;
|
||||
options.nBlockMaxSize = DEFAULT_BLOCK_MAX_SIZE;
|
||||
options.blockMinFeeRate = blockMinFeeRate;
|
||||
return BlockAssembler(params, options);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user