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 695ba2f commit e4fa28aCopy full SHA for e4fa28a
test/functional/interface_bitcoin_cli.py
@@ -140,6 +140,9 @@ def run_test(self):
140
141
if self.is_wallet_compiled():
142
self.log.info("Test -getinfo and bitcoin-cli getwalletinfo return expected wallet info")
143
+ # Explicitely set the output type in order to have constintent tx vsize / fees
144
+ # for both legacy and descriptor wallets (disables the change address type detection algorithm)
145
+ self.restart_node(0, extra_args=["-addresstype=bech32", "-changetype=bech32"])
146
assert_equal(Decimal(cli_get_info['Balance']), BALANCE)
147
assert 'Balances' not in cli_get_info_string
148
wallet_info = self.nodes[0].getwalletinfo()
0 commit comments