Skip to content

Commit

Permalink
Fix lazy parse
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Oct 17, 2024
1 parent b81b81b commit a0f0dc0
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.2c0" if not IS_DEV else "0.0.0.4.9b1",
version="0.0.0.1.2c0" if not IS_DEV else "0.0.0.4.9c1",
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/abi/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ def parse_getter_lazy(self, code_hash, get_tvm: Callable, getters: List[int] = N
tvm = get_tvm()

for parser in parsers:
result.update(parser.parse_getters(tvm))
result.update(parser.parse_getters(tvm, self.tlb_sources))

return result

0 comments on commit a0f0dc0

Please sign in to comment.