Skip to content

Commit 07f3e7c

Browse files
committed
comment
1 parent 26aa081 commit 07f3e7c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Passage.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ contract RollupPassage {
102102
/// @param amount - The amount of the ERC20 token to mint on the Rollup, corresponding to the amount locked on L1.
103103
/// @custom:emits Exit indicating the the desired recipient on the host chain.
104104
function enter(address token, address rollupRecipient, uint256 amount) external {
105+
// TODO: important that no code is deployed to hostPassage address on the rollup :think:
105106
if (msg.sender != hostPassage) revert OnlyHostPassage();
106107
// TODO: IERC20(token).mint(recipient, amount);
107108
emit Enter(token, rollupRecipient, amount);

0 commit comments

Comments
 (0)