Skip to content

Commit

Permalink
chore: forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMustermann2 committed Jun 11, 2024
1 parent c03c7aa commit 267b46b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/storage/GatewayStorage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ contract GatewayStorage {
REQUEST_DEPOSIT_THEN_DELEGATE_TO,
REQUEST_MARK_BOOTSTRAP,
RESPOND,
UPDATE_USERS_BALANCES,
UPDATE_USERS_BALANCES
}

mapping(Action => bytes4) public _whiteListFunctionSelectors;
Expand Down
4 changes: 3 additions & 1 deletion test/foundry/Bootstrap.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,9 @@ contract BootstrapTest is Test {
test12_MarkBootstrapped();
vm.startPrank(address(clientChainLzEndpoint));
vm.expectRevert(
abi.encodeWithSelector(GatewayStorage.UnsupportedRequest.selector, GatewayStorage.Action.REQUEST_MARK_BOOTSTRAP)
abi.encodeWithSelector(
GatewayStorage.UnsupportedRequest.selector, GatewayStorage.Action.REQUEST_MARK_BOOTSTRAP
)
);
bootstrap.lzReceive(
Origin(exocoreChainId, bytes32(bytes20(undeployedExocoreGateway)), uint64(2)),
Expand Down
2 changes: 1 addition & 1 deletion test/mocks/ExocoreGatewayMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ contract ExocoreGatewayMock is
REQUEST_DEPOSIT_THEN_DELEGATE_TO,
REQUEST_MARK_BOOTSTRAP,
RESPOND,
UPDATE_USERS_BALANCES,
UPDATE_USERS_BALANCES
}

mapping(Action => bytes4) public whiteListFunctionSelectors;
Expand Down

0 comments on commit 267b46b

Please sign in to comment.