From a4dc575ccba8348886ed19594a16f5a7242f8fe6 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Tue, 22 Oct 2019 15:28:08 +0000 Subject: rpc: add a flush_cache RPC This allows flushing internal caches (for now, the bad tx cache, which will allow debugging a stuck monerod after it has failed to verify a transaction in a block, since it would otherwise not try again, making subsequent log changes pointless) --- utils/python-rpc/framework/daemon.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'utils/python-rpc') diff --git a/utils/python-rpc/framework/daemon.py b/utils/python-rpc/framework/daemon.py index f811535b1..9f7805dc8 100644 --- a/utils/python-rpc/framework/daemon.py +++ b/utils/python-rpc/framework/daemon.py @@ -516,16 +516,16 @@ class Daemon(object): } return self.rpc.send_json_rpc_request(prune_blockchain) - def get_block_rate(self, seconds = [3600]): - get_block_rate = { - 'method': 'get_block_rate', + def flush_cache(self, bad_txs = False): + flush_cache = { + 'method': 'flush_cache', 'params': { - 'seconds': seconds, + 'bad_txs': bad_txs, }, - 'jsonrpc': '2.0', + 'jsonrpc': '2.0', 'id': '0' } - return self.rpc.send_json_rpc_request(get_block_rate) + return self.rpc.send_json_rpc_request(flush_cache) def rpc_access_info(self, client): rpc_access_info = { -- cgit v1.2.3