Merge pull request #6056

5a44893 python-rpc: add missing strict_balances parameter for get_accounts (moneromooo-monero)
release-0.8.0.2
luigi1111 5 years ago
commit 9d0d4f1d08
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -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'

Loading…
Cancel
Save