diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-18 11:53:47 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-21 19:28:06 +0000 |
commit | b2fc57194392eef601287f77147c679acb2f63c9 (patch) | |
tree | 7f968d3cfcfb5fda0cb7b36d527db1695f5560f7 /tests/functional_tests/test_framework/wallet.py | |
parent | functional_tests: add txpool RPC tests (diff) | |
download | monero-b2fc57194392eef601287f77147c679acb2f63c9.tar.xz |
functional_tests: support several daemons/wallets
Diffstat (limited to 'tests/functional_tests/test_framework/wallet.py')
-rw-r--r-- | tests/functional_tests/test_framework/wallet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional_tests/test_framework/wallet.py b/tests/functional_tests/test_framework/wallet.py index e4f352e1d..4f2997cc4 100644 --- a/tests/functional_tests/test_framework/wallet.py +++ b/tests/functional_tests/test_framework/wallet.py @@ -32,8 +32,8 @@ from .rpc import JSONRPC class Wallet(object): - def __init__(self, protocol='http', host='127.0.0.1', port=18083): - self.rpc = JSONRPC('{protocol}://{host}:{port}'.format(protocol=protocol, host=host, port=port)) + def __init__(self, protocol='http', host='127.0.0.1', port=0, idx=0): + self.rpc = JSONRPC('{protocol}://{host}:{port}'.format(protocol=protocol, host=host, port=port if port else 18090+idx)) def make_uniform_destinations(self, address, transfer_amount, transfer_number_of_destinations=1): destinations = [] |