diff --git a/zetaclient/evm/inbounds.go b/zetaclient/evm/inbounds.go index 5ff050fa38..0875053e08 100644 --- a/zetaclient/evm/inbounds.go +++ b/zetaclient/evm/inbounds.go @@ -325,7 +325,8 @@ func (ob *ChainClient) GetInboundVoteMsgForTokenSentToTSS(tx *ethrpc.Transaction } // donation check - data, _ := hex.DecodeString(message) // err already checked + // #nosec G703 err is already checked + data, _ := hex.DecodeString(message) if bytes.Equal(data, []byte(common.DonationMessage)) { ob.logger.ExternalChainWatcher.Info().Msgf("thank you rich folk for your donation! tx %s chain %d", tx.Hash, ob.chain.ChainId) return nil