Skip to content

Commit

Permalink
Fix len
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Feb 22, 2024
1 parent 9301675 commit 589e2ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def finalize_options(self):

setup(
name="tonpy" if not IS_DEV else "tonpy-dev",
version="0.0.0.1.2b0" if not IS_DEV else "0.0.0.3.0c1",
version="0.0.0.1.2b0" if not IS_DEV else "0.0.0.3.1a1",
author="Disintar LLP",
author_email="andrey@head-labs.com",
description="Types / API for TON blockchain",
Expand Down
2 changes: 1 addition & 1 deletion src/tonpy/blockscanner/blockscanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ def load_historical(self):
f"\n\tMin/max MC seqnos: {start_block_seqno} / {end_block_seqno} "
f": Loaded seqnos {end_block_seqno - start_block_seqno}"
f"\n\tLoaded at: {time() - started_at}\n\n"
f"\n\tChunks count: {len(txs_chunks)}, {sum([sum([i[2] for i in j]) for j in txs_chunks])} TXs")
f"\n\tChunks count: {len(txs_chunks)}, {sum([sum([len(i[2]) for i in j]) for j in txs_chunks])} TXs")

if self.process_raw:
with Pool(p) as pool:
Expand Down

0 comments on commit 589e2ae

Please sign in to comment.