functional_tests: add missing parameters to get_balance

This commit is contained in:
moneromooo-monero 2019-03-21 23:21:12 +00:00
parent cf6d775964
commit fdfa832f00
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 6 additions and 1 deletions

View File

@ -125,9 +125,14 @@ class Wallet(object):
}
return self.rpc.send_json_rpc_request(create_wallet)
def get_balance(self):
def get_balance(self, account_index = 0, address_indices = [], all_accounts = False):
get_balance = {
'method': 'get_balance',
'params': {
'account_index': account_index,
'address_indices': address_indices,
'all_accounts': all_accounts,
},
'jsonrpc': '2.0',
'id': '0'
}