add wallet rpc call to get default fee priority

This commit is contained in:
woodser 2025-02-15 15:15:23 -05:00
parent 84df77404e
commit 05184554a6
4 changed files with 56 additions and 1 deletions

View file

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