mirror of
https://github.com/monero-project/monero.git
synced 2025-06-28 18:47:12 -04:00
add wallet rpc call to get default fee priority
This commit is contained in:
parent
84df77404e
commit
05184554a6
4 changed files with 56 additions and 1 deletions
|
@ -1102,6 +1102,16 @@ class Wallet(object):
|
|||
}
|
||||
return self.rpc.send_json_rpc_request(estimate_tx_size_and_weight)
|
||||
|
||||
def get_default_fee_priority(self):
|
||||
get_default_fee_priority = {
|
||||
'method': 'get_default_fee_priority',
|
||||
'jsonrpc': '2.0',
|
||||
'params': {
|
||||
},
|
||||
'id': '0'
|
||||
}
|
||||
return self.rpc.send_json_rpc_request(get_default_fee_priority)
|
||||
|
||||
def get_version(self):
|
||||
get_version = {
|
||||
'method': 'get_version',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue