check_header_and_update_state
: missing Header.height()
vs Header.trusted_height
check
#585
Milestone
check_header_and_update_state
: missing Header.height()
vs Header.trusted_height
check
#585
Problem is here.
The
tendermint-light-client
's verifier doesn't ensure thatHeader.height() > Header.trusted_height
, so we need to make that check in ibc-rs. In words, the trusted height (representing the height of the header already on chain for which this client update is based on) must be smaller than height of the new header that we're installing.See equivalent check in ibc-go.
The text was updated successfully, but these errors were encountered: