Merge pull request #9787

05184554a add wallet rpc call to get default fee priority (woodser)
This commit is contained in:
tobtoht 2025-02-16 05:22:05 +00:00
commit 24c90ae9a2
No known key found for this signature in database
GPG key ID: E45B10DD027D2472
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',