Skip to content

Commit

Permalink
Merge branch 'develop' into fix/OZ-N08
Browse files Browse the repository at this point in the history
  • Loading branch information
HAOYUatHZ committed Aug 25, 2023
2 parents 95fda52 + 3499c59 commit 02d525b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion common/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
)

var tag = "v4.1.110"
var tag = "v4.1.113"

var commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {
Expand Down
2 changes: 0 additions & 2 deletions contracts/src/L1/gateways/L1ERC20Gateway.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ import {ScrollConstants} from "../../libraries/constants/ScrollConstants.sol";
import {ScrollGatewayBase} from "../../libraries/gateway/ScrollGatewayBase.sol";
import {IMessageDropCallback} from "../../libraries/callbacks/IMessageDropCallback.sol";

// solhint-disable no-empty-blocks

abstract contract L1ERC20Gateway is IL1ERC20Gateway, IMessageDropCallback, ScrollGatewayBase {
using SafeERC20Upgradeable for IERC20Upgradeable;

Expand Down
2 changes: 1 addition & 1 deletion contracts/src/L1/gateways/L1ETHGateway.sol
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ contract L1ETHGateway is ScrollGatewayBase, IL1ETHGateway, IMessageDropCallback
address _to,
uint256 _amount,
uint256 _gasLimit
) public payable override {
) external payable override {
_deposit(_to, _amount, new bytes(0), _gasLimit);
}

Expand Down
2 changes: 0 additions & 2 deletions contracts/src/L2/gateways/L2ERC20Gateway.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import {IL2ERC20Gateway} from "./IL2ERC20Gateway.sol";

import {ScrollGatewayBase} from "../../libraries/gateway/ScrollGatewayBase.sol";

// solhint-disable no-empty-blocks

abstract contract L2ERC20Gateway is ScrollGatewayBase, IL2ERC20Gateway {
/*************
* Variables *
Expand Down
1 change: 0 additions & 1 deletion contracts/src/gas-swap/GasSwap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {ERC2771Context} from "@openzeppelin/contracts/metatx/ERC2771Context.sol"
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC20Permit} from "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol";

import {OwnableBase} from "../libraries/common/OwnableBase.sol";
Expand Down

0 comments on commit 02d525b

Please sign in to comment.