aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-12-12 13:48:15 -0600
committerluigi1111 <luigi1111w@gmail.com>2019-12-12 13:48:15 -0600
commit9d0d4f1d083bd7a1cd0cb287636bf23e3c5f074d (patch)
treee8900303679f3c779e95c1f72ec3e91b94981328
parentMerge pull request #6055 (diff)
parentpython-rpc: add missing strict_balances parameter for get_accounts (diff)
downloadmonero-9d0d4f1d083bd7a1cd0cb287636bf23e3c5f074d.tar.xz
Merge pull request #6056
5a44893 python-rpc: add missing strict_balances parameter for get_accounts (moneromooo-monero)
-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 6a3fabdc9..141e6595c 100644
--- a/utils/python-rpc/framework/wallet.py
+++ b/utils/python-rpc/framework/wallet.py
@@ -838,11 +838,12 @@ class Wallet(object):
}
return self.rpc.send_json_rpc_request(validate_address)
- def get_accounts(self, tag):
+ def get_accounts(self, tag, strict_balances = False):
get_accounts = {
'method': 'get_accounts',
'params': {
'tag': tag,
+ 'strict_balances': strict_balances,
},
'jsonrpc': '2.0',
'id': '0'