From 206cb5fa74a7ca38038b937d202ae39fbbd63c19 Mon Sep 17 00:00:00 2001 From: yito88 Date: Fri, 13 Oct 2023 17:39:54 +0200 Subject: [PATCH] for ibc-rs #911 --- crates/ibc/src/clients/ics07_tendermint/header.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/ibc/src/clients/ics07_tendermint/header.rs b/crates/ibc/src/clients/ics07_tendermint/header.rs index 86c14f85b..749d346b9 100644 --- a/crates/ibc/src/clients/ics07_tendermint/header.rs +++ b/crates/ibc/src/clients/ics07_tendermint/header.rs @@ -119,13 +119,6 @@ impl Header { }); } - if self.trusted_next_validator_set.hash() != self.signed_header.header.next_validators_hash - { - return Err(Error::MismatchValidatorsHashes { - signed_header_validators_hash: self.signed_header.header.next_validators_hash, - validators_hash: self.trusted_next_validator_set.hash(), - }); - } Ok(()) } }