Skip to content

Commit 3a7efd7

Browse files
committed
forge fmt
1 parent 3e722aa commit 3a7efd7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

script/BatchCallAndSponsor.s.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ contract BatchCallAndSponsorScript is Script {
9797
for (uint256 i = 0; i < calls.length; i++) {
9898
encodedCalls = abi.encodePacked(encodedCalls, calls[i].to, calls[i].value, calls[i].data);
9999
}
100-
bytes32 digest = keccak256(abi.encodePacked(block.chainid, BatchCallAndSponsor(ALICE_ADDRESS).nonce(), encodedCalls));
100+
bytes32 digest =
101+
keccak256(abi.encodePacked(block.chainid, BatchCallAndSponsor(ALICE_ADDRESS).nonce(), encodedCalls));
101102
(uint8 v, bytes32 r, bytes32 s) = vm.sign(ALICE_PK, MessageHashUtils.toEthSignedMessageHash(digest));
102103
bytes memory signature = abi.encodePacked(r, s, v);
103104

0 commit comments

Comments
 (0)