mirror of
https://github.com/monero-project/monero.git
synced 2025-12-10 07:22:34 +01:00
Merge pull request #5490
1a93aa4 functional_tests: add get_fee_estimate to blockchain test (moneromooo-monero)
This commit is contained in:
@@ -333,3 +333,14 @@ class Daemon(object):
|
||||
'id': '0'
|
||||
}
|
||||
return self.rpc.send_json_rpc_request(get_alternate_chains)
|
||||
|
||||
def get_fee_estimate(self, grace_blocks = 0):
|
||||
get_fee_estimate = {
|
||||
'method': 'get_fee_estimate',
|
||||
'params': {
|
||||
'grace_blocks': grace_blocks,
|
||||
},
|
||||
'jsonrpc': '2.0',
|
||||
'id': '0'
|
||||
}
|
||||
return self.rpc.send_json_rpc_request(get_fee_estimate)
|
||||
|
||||
Reference in New Issue
Block a user