From 50dc1647ec23c23b81f0cb8a56e59fe2118fd146 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 28 Apr 2013 09:53:26 +0400 Subject: [PATCH] fix: cache command --- backends/irc/__init__.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/backends/irc/__init__.py b/backends/irc/__init__.py index e153402..f0056d0 100644 --- a/backends/irc/__init__.py +++ b/backends/irc/__init__.py @@ -204,7 +204,7 @@ class ServerProcessor(Processor): elif method == 'server.cache': p = self.dispatcher.request_dispatcher.processors['blockchain'] - result = len(repr(p.store.tx_cache)) + result = len(repr(p.history_cache)) elif method == 'server.load': p = self.dispatcher.request_dispatcher.processors['blockchain'] -- 1.7.1