You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// trusted validators `{trusted_validator_set:?}`, does not hash to latest trusted validators. Expected: `{next_validators_hash}`, got: `{trusted_val_hash}`
88
-
MisbehaviourTrustedValidatorHashMismatch{
89
-
trusted_validator_set:Vec<Validator>,
90
-
next_validators_hash:Hash,
91
-
trusted_val_hash:Hash,
88
+
/// The given hash of the validators does not matches the given hash in the signed header. Expected: `{signed_header_validators_hash}`, got: `{validators_hash}`
89
+
MismatchValidatorsHashes{
90
+
validators_hash:Hash,
91
+
signed_header_validators_hash:Hash,
92
92
},
93
93
/// current timestamp minus the latest consensus state timestamp is greater than or equal to the trusting period (`{duration_since_consensus_state:?}` >= `{trusting_period:?}`)
94
94
ConsensusStateTimestampGteTrustingPeriod{
@@ -99,11 +99,6 @@ pub enum Error {
99
99
MisbehaviourHeadersBlockHashesEqual,
100
100
/// headers are not at same height and are monotonically increasing
101
101
MisbehaviourHeadersNotAtSameHeight,
102
-
/// header chain-id `{header_chain_id}` does not match the light client's chain-id `{chain_id}`)
0 commit comments