From dcc12f5764b98620bf0f269b6909242ebb4691e9 Mon Sep 17 00:00:00 2001 From: Gwen Date: Tue, 31 Oct 2023 14:25:26 -0400 Subject: [PATCH] fix --- relayer/relayer.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/relayer/relayer.go b/relayer/relayer.go index 253d4f7e..04d30880 100644 --- a/relayer/relayer.go +++ b/relayer/relayer.go @@ -187,16 +187,6 @@ func NewRelayer( // RelayMessage relays a single warp message to the destination chain. Warp message relay requests from the same origin chain are processed serially func (r *Relayer) RelayMessage(warpLogInfo *vmtypes.WarpLogInfo, metrics *MessageRelayerMetrics, messageCreator message.Creator) error { - // Check that the destination chain ID is supported - if !r.CheckSupportedDestination(warpLogInfo.DestinationChainID) { - r.logger.Debug( - "Message destination chain ID not supported. Not relaying.", - zap.String("chainID", r.sourceChainID.String()), - zap.String("destinationChainID", warpLogInfo.DestinationChainID.String()), - ) - return nil - } - r.logger.Info( "Relaying message", zap.String("chainID", r.sourceChainID.String()),