functional_tests: add missing parameters to get_balance

pull/200/head
moneromooo-monero 5 years ago
parent cf6d775964
commit fdfa832f00
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

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

Loading…
Cancel
Save