chainlib

Generic blockchain access library and tooling
Log | Files | Refs | README | LICENSE

commit a0dd37e944705526cabff392cee74f03672e3099
parent 29f4fdb7772e3004e50597302df4ca93b37117fe
Author: nolash <dev@holbrook.no>
Date:   Thu, 15 Apr 2021 17:51:39 +0200

Remove logline

Diffstat:
Mchainlib/eth/tx.py | 1+
Mchainlib/stat.py | 1-
Msetup.cfg | 2+-
3 files changed, 2 insertions(+), 2 deletions(-)

diff --git 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 @@ -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 @@ -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