From 48eafc6a4d1c19d6c587af802578c21a90fd3bf5 Mon Sep 17 00:00:00 2001 From: Ross Nicoll Date: Sat, 18 Sep 2021 21:39:50 +0100 Subject: [PATCH] Partially fix wallet_groups.py --- test/functional/wallet_groups.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/functional/wallet_groups.py b/test/functional/wallet_groups.py index c39939206ca..eb19e141e04 100755 --- a/test/functional/wallet_groups.py +++ b/test/functional/wallet_groups.py @@ -20,8 +20,8 @@ def set_test_params(self): ["-addresstype=bech32"], ["-addresstype=bech32"], ["-avoidpartialspends", "-addresstype=bech32"], - ["-maxapsfee=0.002719", "-addresstype=bech32"], - ["-maxapsfee=0.002720", "-addresstype=bech32"], + ["-maxapsfee=0.013599", "-addresstype=bech32"], + ["-maxapsfee=0.013600", "-addresstype=bech32"], ] self.rpc_timeout = 480 @@ -122,7 +122,7 @@ def run_test(self): [self.nodes[0].sendtoaddress(addr_aps2, 1.0) for _ in range(5)] self.nodes[0].generate(1) self.sync_all() - with self.nodes[3].assert_debug_log(['Fee non-grouped = 5520, grouped = 8240, using non-grouped']): + with self.nodes[3].assert_debug_log(['Fee non-grouped = 27600, grouped = 41200, using non-grouped']): txid5 = self.nodes[3].sendtoaddress(self.nodes[0].getnewaddress(), 2.95) tx5 = self.nodes[3].getrawtransaction(txid5, True) # tx5 should have 3 inputs (1.0, 1.0, 1.0) and 2 outputs @@ -135,7 +135,7 @@ def run_test(self): [self.nodes[0].sendtoaddress(addr_aps3, 1.0) for _ in range(5)] self.nodes[0].generate(1) self.sync_all() - with self.nodes[4].assert_debug_log(['Fee non-grouped = 5520, grouped = 8240, using grouped']): + with self.nodes[4].assert_debug_log(['Fee non-grouped = 27600, grouped = 41200, using grouped']): txid6 = self.nodes[4].sendtoaddress(self.nodes[0].getnewaddress(), 2.95) tx6 = self.nodes[4].getrawtransaction(txid6, True) # tx6 should have 5 inputs and 2 outputs @@ -164,7 +164,7 @@ def run_test(self): # Check that we can create a transaction that only requires ~100 of our # utxos, without pulling in all outputs and creating a transaction that # is way too big. - assert self.nodes[2].sendtoaddress(address=addr2[0], amount=5) + assert self.nodes[2].sendtoaddress(address=addr2[0], amount=50) if __name__ == '__main__':