Skip to content

Commit

Permalink
Merge pull request #43 from tsite/erc20-based-bridge
Browse files Browse the repository at this point in the history
setGateways() in OrbitGatewayRouter should not be payable
  • Loading branch information
gvladika authored Oct 9, 2023
2 parents 04aa5e6 + e580b98 commit 95b2c40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ contract L1OrbitGatewayRouter is L1GatewayRouter {
uint256 _gasPriceBid,
uint256 _maxSubmissionCost,
uint256 _feeAmount
) external payable onlyOwner returns (uint256) {
) external onlyOwner returns (uint256) {
return
_setGateways(
_token,
Expand Down

0 comments on commit 95b2c40

Please sign in to comment.