Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tsahee committed Apr 25, 2024
1 parent 4130267 commit d838af8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mocks/MultiCallTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ contract MultiCallTest {
uint8 kind = uint8(curr[0]);
curr = curr[1:];

if (kind & 0xf0 == 0x0) {
if (kind & 0xf0 == 0x0) {
// call
uint256 value;
if (kind & 0x3 == 0) {
Expand Down Expand Up @@ -83,7 +83,7 @@ contract MultiCallTest {
emit Called(addr, count, success, out);
}
output = bytes.concat(output, out);
} else if (kind & 0xf0 == 0x10) {
} else if (kind & 0xf0 == 0x10) {
// storage
bytes32 slot = bytes32(curr[:32]);
curr = curr[32:];
Expand All @@ -95,7 +95,7 @@ contract MultiCallTest {
assembly {
sstore(slot, data)
}
} else if (kind & 0x3 == 1){
} else if (kind & 0x3 == 1) {
write = false;
assembly {
data := sload(slot)
Expand Down

0 comments on commit d838af8

Please sign in to comment.