Skip to content

Commit aeb5cd5

Browse files
committed
add upgrade handler for v2.0.0
1 parent f9c605e commit aeb5cd5

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

app/setup_handlers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/cosmos/cosmos-sdk/x/upgrade/types"
88
)
99

10-
const releaseVersion = "v1.0.7"
10+
const releaseVersion = "v2.0.0"
1111

1212
func SetupHandlers(app *App) {
1313
app.UpgradeKeeper.SetUpgradeHandler(releaseVersion, func(ctx sdk.Context, plan types.Plan, vm module.VersionMap) (module.VersionMap, error) {

zetaclient/evm_client.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,6 @@ func (ob *EVMChainClient) IsSendOutTxProcessed(sendHash string, nonce int, coint
227227
}
228228
sendID := fmt.Sprintf("%s-%d", ob.chain.String(), nonce)
229229
logger = logger.With().Str("sendID", sendID).Logger()
230-
logger.Info().Msgf("nonce %d ", nonce)
231-
logger.Info().Msgf("Found TX %s |Receipt Hash %s", transaction.Hash().Hex(), receipt.TxHash.Hex())
232-
logger.Info().Msgf("ReceiptStatus %d | block number %s ", receipt.Status, receipt.BlockNumber.String())
233230
if cointype == common.CoinType_Gas { // the outbound is a regular Ether/BNB/Matic transfer; no need to check events
234231
if receipt.Status == 1 {
235232
zetaHash, err := ob.zetaClient.PostReceiveConfirmation(

0 commit comments

Comments
 (0)