Skip to content

Commit

Permalink
silenced wasm client error
Browse files Browse the repository at this point in the history
  • Loading branch information
sampocs committed Jul 24, 2024
1 parent 250cb55 commit 53b4587
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions relayer/chains/cosmos/message_handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ func (ccp *CosmosChainProcessor) handleConnectionMessage(eventType string, ci pr
}

func (ccp *CosmosChainProcessor) handleClientMessage(ctx context.Context, eventType string, ci chains.ClientInfo) {
if ci.ClientID == "08-wasm-58" {
return
}
ccp.latestClientState.update(ctx, ci, ccp)
ccp.logObservedIBCMessage(eventType, zap.String("client_id", ci.ClientID))
}
Expand Down

0 comments on commit 53b4587

Please sign in to comment.