| 79 | } |
| 80 | |
| 81 | BlockCreateOptions FlattenMiningOptions(BlockCreateOptions options) |
| 82 | { |
| 83 | if (!options.block_min_fee_rate) options.block_min_fee_rate = CFeeRate{DEFAULT_BLOCK_MIN_TX_FEE}; |
| 84 | if (!options.print_modified_fee) options.print_modified_fee = DEFAULT_PRINT_MODIFIED_FEE; |
| 85 | if (!options.block_reserved_weight) options.block_reserved_weight = DEFAULT_BLOCK_RESERVED_WEIGHT; |
| 86 | if (!options.block_max_weight) options.block_max_weight = DEFAULT_BLOCK_MAX_WEIGHT; |
| 87 | return options; |
| 88 | } |
| 89 | |
| 90 | BlockCreateOptions MergeMiningOptions(BlockCreateOptions x, const BlockCreateOptions& y) |
| 91 | { |
no outgoing calls
no test coverage detected