Skip to content

Commit

Permalink
Add address to executor in deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
gianbelinche committed Oct 10, 2024
1 parent 65bac4e commit b3e1673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l1-contracts/deploy-scripts/DeployL1.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ contract DeployL1Script is Script {
}

function deployStateTransitionDiamondFacets() internal {
address executorFacet = deployViaCreate2(type(ExecutorFacet).creationCode);
address executorFacet = deployViaCreate2(abi.encodePacked(type(ExecutorFacet).creationCode,abi.encode(addresses.eigendaVerifier)));
console.log("ExecutorFacet deployed at:", executorFacet);
addresses.stateTransition.executorFacet = executorFacet;

Expand Down

0 comments on commit b3e1673

Please sign in to comment.