Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tendermint-light-client: add clarifying comment #1287

Merged
merged 2 commits into from
Apr 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions light-client-verifier/src/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,11 @@ where
/// **NOTE**: If the untrusted state's `next_validators` field is `None`,
/// this will not (and will not be able to) check whether the untrusted
/// state's `next_validators_hash` field is valid.
///
/// **NOTE**: It is the caller's responsibility to ensure that
/// `trusted.next_validators.hash() == trusted.next_validators_hash`,
/// as typically the `trusted.next_validators` validator set comes from the relayer,
/// and `trusted.next_validators_hash` is the hash stored on chain.
fn verify(
&self,
untrusted: UntrustedBlockState<'_>,
Expand Down