chainqueue

Blockchain transaction queue control
Log | Files | Refs | LICENSE

commit 1f7ca2864771e569a0ae6bb485e8f6477f912442
parent d19fbf005e74d2391e5b516be44905de7a37b7e4
Author: lash <dev@holbrook.no>
Date:   Sun, 13 Mar 2022 17:24:25 +0000

Remove log spam

Diffstat:
Mchainqueue/store/base.py | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/chainqueue/store/base.py b/chainqueue/store/base.py @@ -1,5 +1,4 @@ # standard imports -import logging import re import datetime @@ -8,9 +7,6 @@ from chainqueue.cache import CacheTx from chainqueue.entry import QueueEntry -logg = logging.getLogger(__name__) - - def to_key(t, n, k): return '{}_{}_{}'.format(t, n, k) @@ -81,7 +77,6 @@ class Store: if threshold != None: v = self.state_store.modified(ref) - logg.debug('compare {} {}'.format(v, threshold)) if v > threshold: continue