Skip to content

Commit

Permalink
fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Radek Svarz committed Oct 15, 2024
1 parent 1350067 commit c63bb29
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ contract Deploy is Script, CreateXScript, WithStyle {

console2.log(greencheck("Entrypoint deployed contract address:", entrypoint));

require(computedAddress == entrypoint, red("Computed and deployed entrypoint address do not match! Check sender arg."));
require(
computedAddress == entrypoint,
red("Computed and deployed entrypoint address do not match! Check sender arg.")
);

// For forge verify-contract --constructor-args
console2.log("--constructor-args ", vm.toString(abi.encode(implementation, initializeData)));
Expand Down

0 comments on commit c63bb29

Please sign in to comment.