functional_tests: add tx_notes tests

This commit is contained in:
moneromooo-monero 2019-05-02 12:31:08 +00:00
parent 4c375c9442
commit 170e51f0d9
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
2 changed files with 41 additions and 0 deletions

View file

@ -911,6 +911,29 @@ class Wallet(object):
}
return self.rpc.send_json_rpc_request(rescan_spent)
def set_tx_notes(self, txids = [], notes = []):
set_tx_notes = {
'method': 'set_tx_notes',
'jsonrpc': '2.0',
'params': {
'txids': txids,
'notes': notes,
},
'id': '0'
}
return self.rpc.send_json_rpc_request(set_tx_notes)
def get_tx_notes(self, txids = []):
get_tx_notes = {
'method': 'get_tx_notes',
'jsonrpc': '2.0',
'params': {
'txids': txids,
},
'id': '0'
}
return self.rpc.send_json_rpc_request(get_tx_notes)
def set_attribute(self, key, value):
set_attribute = {
'method': 'set_attribute',