Skip to content

Commit

Permalink
Fix checksum for tests with updated eth-keyfile
Browse files Browse the repository at this point in the history
  • Loading branch information
fselmo committed Dec 7, 2023
1 parent d6a29c1 commit 3dfc0e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/eth-module/test_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ def test_eth_account_recover_transaction_from_eth_test(acct, transaction):
def test_eth_account_encrypt(acct, web3js_key, web3js_password):
encrypted = acct.encrypt(web3js_key, web3js_password)

assert encrypted["address"] == "2c7536e3605d9c16a7a3d7b1898e529396a65c23"
assert encrypted["address"] == "2c7536E3605D9C16a7a3D7b1898e529396a65c23"
assert encrypted["version"] == 3

decrypted_key = acct.decrypt(encrypted, web3js_password)
Expand All @@ -480,7 +480,7 @@ def test_eth_account_prepared_encrypt(acct, web3js_key, web3js_password):
account = acct.from_key(web3js_key)
encrypted = account.encrypt(web3js_password)

assert encrypted["address"] == "2c7536e3605d9c16a7a3d7b1898e529396a65c23"
assert encrypted["address"] == "2c7536E3605D9C16a7a3D7b1898e529396a65c23"
assert encrypted["version"] == 3

decrypted_key = acct.decrypt(encrypted, web3js_password)
Expand Down

0 comments on commit 3dfc0e2

Please sign in to comment.