diff options
author | lsilva01 <lsilva01@protonmail.com> | 2021-10-20 00:30:28 -0300 |
---|---|---|
committer | lsilva01 <lsilva01@protonmail.com> | 2021-10-20 00:30:28 -0300 |
commit | 7b3c9e4ee8feb552dc0fc4347db2d06e60894a9f (patch) | |
tree | 8d2b9169ba14c31e38df4822eadc6edc7d0b45c6 /test/functional/feature_rbf.py | |
parent | 23a7d56df2dd42b16e5d9748aad5630e448becd7 (diff) |
Make explicit the node param in init_wallet()
Diffstat (limited to 'test/functional/feature_rbf.py')
-rwxr-xr-x | test/functional/feature_rbf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_rbf.py b/test/functional/feature_rbf.py index 4eaaf46454..420147542e 100755 --- a/test/functional/feature_rbf.py +++ b/test/functional/feature_rbf.py @@ -539,7 +539,7 @@ class ReplaceByFeeTest(BitcoinTestFramework): assert_equal(json1["vin"][0]["sequence"], 4294967295) if self.is_wallet_compiled(): - self.init_wallet(0) + self.init_wallet(node=0) rawtx2 = self.nodes[0].createrawtransaction([], outs) frawtx2a = self.nodes[0].fundrawtransaction(rawtx2, {"replaceable": True}) frawtx2b = self.nodes[0].fundrawtransaction(rawtx2, {"replaceable": False}) |