diff options
| author | Russell Yanofsky <[email protected]> | 2020-09-28 20:24:06 -0400 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2020-09-29 04:35:01 -0400 |
| commit | ed3acda33b75d1b546ee696a63def239bcdd62de (patch) | |
| tree | e5944e95fa4f26367dc0f6d2fb893c89fcf5563a /test/functional/wallet_send.py | |
| parent | Merge #19630: Cleanup fee estimation code (diff) | |
| download | discoin-ed3acda33b75d1b546ee696a63def239bcdd62de.tar.xz discoin-ed3acda33b75d1b546ee696a63def239bcdd62de.zip | |
test, refactor: add default_wallet_name and wallet_data_filename variables
No changes in behavior
Diffstat (limited to 'test/functional/wallet_send.py')
| -rwxr-xr-x | test/functional/wallet_send.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_send.py b/test/functional/wallet_send.py index 4fdfad01c..876eb7f29 100755 --- a/test/functional/wallet_send.py +++ b/test/functional/wallet_send.py @@ -156,7 +156,7 @@ class WalletSendTest(BitcoinTestFramework): def run_test(self): self.log.info("Setup wallets...") # w0 is a wallet with coinbase rewards - w0 = self.nodes[0].get_wallet_rpc("") + w0 = self.nodes[0].get_wallet_rpc(self.default_wallet_name) # w1 is a regular wallet self.nodes[1].createwallet(wallet_name="w1") w1 = self.nodes[1].get_wallet_rpc("w1") |