Skip to content

Commit

Permalink
fix: change sign command to use merged cast feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Oighty committed Jun 5, 2023
1 parent 9a646ae commit 5031874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BatchScript.sol
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ abstract contract BatchScript is Script, DelegatePrank {
string memory typedData = _getTypedData(safe_, batch_);

// Construct the sign command
string memory commandStart = "~/projects/foundry/target/debug/cast wallet sign ";
string memory commandStart = "cast wallet sign ";
string memory wallet;
if (walletType == LOCAL) {
wallet = string.concat("--private-key ", vm.toString(privateKey), " ");
Expand Down

0 comments on commit 5031874

Please sign in to comment.