Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
Fix EVM address not used in call coinbase
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementWalter committed Oct 28, 2024
1 parent 746a692 commit 929e4b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kakarot_scripts/deployment/starknet_deployments.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ async def deploy_starknet_contracts(account):
class_hash["Cairo1Helpers"],
BLOCK_GAS_LIMIT,
)
coinbase = (await call("EVM", "get_coinbase"))[0]
coinbase = (await call("EVM", "get_coinbase", address=starknet_deployments["EVM"]))[
0
]
if coinbase != COINBASE:
logger.info(f"ℹ️ Setting EVM coinbase to {COINBASE}")
await invoke(
Expand Down

0 comments on commit 929e4b0

Please sign in to comment.