fix(contracts): OZ-N07 Incorrect Function Visibility (#875)

Co-authored-by: zimpha <zimpha@users.noreply.github.com>
Co-authored-by: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com>
This commit is contained in:
Xi Lin
2023-08-25 15:03:15 +08:00
committed by GitHub
parent 95d2df46e3
commit 3499c595e7
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ import (
"strings"
)
var tag = "v4.1.111"
var tag = "v4.1.112"
var commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {

View File

@@ -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);
}