Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
yungwine committed Apr 10, 2024
1 parent 7f6e5d5 commit be0f0a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pytoniq",
version="0.1.34",
version="0.1.35",
author="Maksim Kurbatov",
author_email="[email protected]",
description="TON Blockchain SDK",
Expand Down
3 changes: 3 additions & 0 deletions tests/test_liteclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,6 @@ async def test_get_method(client: LiteClient):
result = await client.run_get_method(address='EQBvW8Z5huBkMJYdnfAEM5JqTNkuWX3diqYENkWsIL0XggGG', method='seqno',
stack=[])
assert isinstance(result[0], int)
result2 = await client.run_get_method_local(address='EQBvW8Z5huBkMJYdnfAEM5JqTNkuWX3diqYENkWsIL0XggGG', method='seqno',
stack=[])
assert result2 == result

0 comments on commit be0f0a7

Please sign in to comment.