Skip to content

Commit

Permalink
push back old values
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis committed Nov 12, 2024
1 parent 74a9665 commit 9ca4c7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x/fungible/keeper/v2_evm.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

// gatewayGasLimit is the gas limit for the gateway functions
var gatewayGasLimit *big.Int // = big.NewInt(1_000_000)
var gatewayGasLimit = big.NewInt(1_000_000)

// CallUpdateGatewayAddress calls the updateGatewayAddress function on the ZRC20 contract
// function updateGatewayAddress(address addr)
Expand Down
2 changes: 1 addition & 1 deletion zetaclient/zetacore/constant.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const (

// PostVoteOutboundRevertGasLimit is the gas limit for voting on observed outbound tx for revert (when outbound fails)
// The value is set to 7M because in case of onRevert call, it might consume lot of gas
PostVoteOutboundRevertGasLimit = 4_000_000
PostVoteOutboundRevertGasLimit = 7_000_000
)

// constants for monitoring tx results
Expand Down

0 comments on commit 9ca4c7e

Please sign in to comment.