Skip to content

Commit 9b75cfd

Browse files
committed
test: retain the intended behavior of feature_fee_estimation.py nodes
- Increase block weight by 4000 for all nodes with custom -blockmaxweight. Prior to this commit, we generated blocks with 4000 weight units less worth of transactions. See bitcoin/bitcoin#32461 (comment) for details. This commit fixes it by increasing the block weight by 4000.
1 parent 5c1236f commit 9b75cfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/functional/feature_fee_estimation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ def set_test_params(self):
146146
self.noban_tx_relay = True
147147
self.extra_args = [
148148
[],
149-
["-blockmaxweight=68000"],
150-
["-blockmaxweight=32000"],
149+
["-blockmaxweight=72000"],
150+
["-blockmaxweight=36000"],
151151
]
152152

153153
def setup_network(self):

0 commit comments

Comments
 (0)