From 2632ae24926e251fb70efabaa1a8b92755c7bccc Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Date: Wed, 12 Apr 2023 11:43:01 +0200 Subject: [PATCH] add missing interface check (#3437) --- modules/light-clients/07-tendermint/consensus_state.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/light-clients/07-tendermint/consensus_state.go b/modules/light-clients/07-tendermint/consensus_state.go index 1e8725ecb6d..86eb9a9fc58 100644 --- a/modules/light-clients/07-tendermint/consensus_state.go +++ b/modules/light-clients/07-tendermint/consensus_state.go @@ -12,6 +12,8 @@ import ( "github.com/cosmos/ibc-go/v7/modules/core/exported" ) +var _ exported.ConsensusState = (*ConsensusState)(nil) + // SentinelRoot is used as a stand-in root value for the consensus state set at the upgrade height const SentinelRoot = "sentinel_root"