From a0dd37e944705526cabff392cee74f03672e3099 Mon Sep 17 00:00:00 2001 From: nolash Date: Thu, 15 Apr 2021 17:51:39 +0200 Subject: [PATCH] Remove logline --- chainlib/eth/tx.py | 1 + chainlib/stat.py | 1 - setup.cfg | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chainlib/eth/tx.py b/chainlib/eth/tx.py index 9dd0efa..cb12a31 100644 --- a/chainlib/eth/tx.py +++ b/chainlib/eth/tx.py @@ -351,6 +351,7 @@ class Tx: def src_normalize(self, src): return snake_and_camel(src) + def apply_receipt(self, rcpt): logg.debug('rcpt {}'.format(rcpt)) try: diff --git a/chainlib/stat.py b/chainlib/stat.py index 3cd008a..a6f63d1 100644 --- a/chainlib/stat.py +++ b/chainlib/stat.py @@ -21,7 +21,6 @@ class ChainStat: self.block_avg_aggregate += block.timestamp - self.block_timestamp_last self.block_avg_aggregate /= (self.block_avg_count + 1) - print('aggr {}'.format(type(self.block_avg_aggregate))) self.block_avg_count += 1 self.block_timestamp_last = block.timestamp diff --git a/setup.cfg b/setup.cfg index 9b684f9..49477e3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainlib -version = 0.0.2a14 +version = 0.0.2a15 description = Generic blockchain access library and tooling author = Louis Holbrook author_email = dev@holbrook.no