From 937cdaa5195ea4fe4fbfdac3a60d09254550fa78 Mon Sep 17 00:00:00 2001 From: Troy Kessler Date: Mon, 13 May 2024 10:45:16 +0200 Subject: [PATCH] chore: fixed type tendermint/DuplicateVoteEvidence --- types/evidence.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/evidence.go b/types/evidence.go index 66ba696a3ee..64944211409 100644 --- a/types/evidence.go +++ b/types/evidence.go @@ -540,8 +540,8 @@ func EvidenceFromProto(evidence *cmtproto.Evidence) (Evidence, error) { } func init() { - cmtjson.RegisterType(&DuplicateVoteEvidence{}, "cometbft/v38/DuplicateVoteEvidence") - cmtjson.RegisterType(&LightClientAttackEvidence{}, "cometbft/v38/LightClientAttackEvidence") + cmtjson.RegisterType(&DuplicateVoteEvidence{}, "tendermint/DuplicateVoteEvidence") + cmtjson.RegisterType(&LightClientAttackEvidence{}, "tendermint/LightClientAttackEvidence") } //-------------------------------------------- ERRORS --------------------------------------