Skip to content

Commit

Permalink
feat: upgrade to our latest version of pytezos
Browse files Browse the repository at this point in the history
  • Loading branch information
Psycojoker committed Oct 24, 2024
1 parent d54e9ac commit 95b7a49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ optional-dependencies.substrate = [
"substrate-interface",
]
optional-dependencies.tezos = [
"aleph-pytezos==0.1.1",
"aleph-pytezos==3.13.4",
"pynacl",
]
urls.Documentation = "https://aleph.im/"
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/test_chain_tezos.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async def test_tezos_account(tezos_account: TezosAccount):
message = Message("TEZOS", tezos_account.get_address(), "SomeType", "ItemHash")
signed = await tezos_account.sign_message(asdict(message))
assert signed["signature"]
assert len(signed["signature"]) == 188
assert len(signed["signature"]) == 187

address = tezos_account.get_address()
assert address is not None
Expand All @@ -40,7 +40,7 @@ async def test_tezos_account(tezos_account: TezosAccount):

pubkey = tezos_account.get_public_key()
assert isinstance(pubkey, str)
assert len(pubkey) == 55
assert len(pubkey) == 54


@pytest.mark.asyncio
Expand Down

0 comments on commit 95b7a49

Please sign in to comment.