aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-03-24 08:58:27 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-04-11 11:08:04 +0000
commitb3a32d55052f0e2483f1abb08aed0aed1a52cbb5 (patch)
tree6f74a532f5f83dcd55e9754b3903655534f7024c /utils
parentconsole.py: support connecting to any host, not just 127.0.0.1 (diff)
downloadmonero-b3a32d55052f0e2483f1abb08aed0aed1a52cbb5.tar.xz
functional_tests: add describe_transfer tests
Diffstat (limited to 'utils')
-rw-r--r--utils/python-rpc/framework/wallet.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/python-rpc/framework/wallet.py b/utils/python-rpc/framework/wallet.py
index ea683b8c5..5b0df2e13 100644
--- a/utils/python-rpc/framework/wallet.py
+++ b/utils/python-rpc/framework/wallet.py
@@ -101,11 +101,12 @@ class Wallet(object):
}
return self.rpc.send_json_rpc_request(get_bulk_payments)
- def describe_transfer(self, unsigned_txset):
+ def describe_transfer(self, unsigned_txset = '', multisig_txset = ''):
describe_transfer = {
'method': 'describe_transfer',
'params': {
'unsigned_txset': unsigned_txset,
+ 'multisig_txset': multisig_txset,
},
'jsonrpc': '2.0',
'id': '0'