Skip to content

Commit

Permalink
debugging hotfix v5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kingpinXD committed Jul 18, 2023
1 parent 37d7e09 commit 1a0326b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions zetaclient/evm_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,10 @@ func (ob *EVMChainClient) IsSendOutTxProcessed(sendHash string, nonce int, coint
}
sendID := fmt.Sprintf("%s-%d", ob.chain.String(), nonce)
logger = logger.With().Str("sendID", sendID).Logger()
logger.Info().Msgf("Processing sendHash %s on chain %s", sendHash, ob.chain.String())
logger.Info().Msgf("Receipt Hash %s", receipt.TxHash.Hex())
logger.Info().Msgf("Receipt BlockNumber %s", receipt.BlockNumber)
logger.Info().Msgf("Receipt %+v", receipt)
if cointype == common.CoinType_Gas { // the outbound is a regular Ether/BNB/Matic transfer; no need to check events
if receipt.Status == 1 {
zetaHash, err := ob.zetaClient.PostReceiveConfirmation(
Expand Down

0 comments on commit 1a0326b

Please sign in to comment.