Skip to content

Commit 7e832e2

Browse files
committed
feat: upgrade to our latest version of pytezos
1 parent 964020c commit 7e832e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ optional-dependencies.substrate = [
8080
"substrate-interface",
8181
]
8282
optional-dependencies.tezos = [
83-
"aleph-pytezos==0.1.1",
83+
"aleph-pytezos==3.13.4",
8484
"pynacl",
8585
]
8686
urls.Documentation = "https://aleph.im/"

tests/unit/test_chain_tezos.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async def test_tezos_account(tezos_account: TezosAccount):
3131
message = Message("TEZOS", tezos_account.get_address(), "SomeType", "ItemHash")
3232
signed = await tezos_account.sign_message(asdict(message))
3333
assert signed["signature"]
34-
assert len(signed["signature"]) == 188
34+
assert len(signed["signature"]) == 187
3535

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

4141
pubkey = tezos_account.get_public_key()
4242
assert isinstance(pubkey, str)
43-
assert len(pubkey) == 55
43+
assert len(pubkey) == 54
4444

4545

4646
@pytest.mark.asyncio

0 commit comments

Comments
 (0)