Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
cam-schultz committed Jan 12, 2024
1 parent a166763 commit f6a7b08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contracts/src/Teleporter/tests/FallbackReceiveTests.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ contract FallbackReceiveApp {
(bytes32 sourceBlockchainID_, address originSenderAddress_, bytes memory message) =
abi.decode(data[4:], (bytes32, address, bytes));

require(sourceBlockchainID == sourceBlockchainID_, "FallbackReceiveApp: Invalid origin chain ID");
require(
sourceBlockchainID == sourceBlockchainID_, "FallbackReceiveApp: Invalid origin chain ID"
);
require(
originSenderAddress == originSenderAddress_,
"FallbackReceiveApp: Invalid origin sender address"
Expand Down

0 comments on commit f6a7b08

Please sign in to comment.