Skip to content

Commit

Permalink
more dbg print
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad committed Sep 24, 2024
1 parent 302fe43 commit 1bbc381
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cosmwasm/enclaves/shared/block-verifier/src/verify/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ pub fn validate_block_header(
sgx_status_t::SGX_ERROR_INVALID_PARAMETER
})?;

println!(
"proposed block height={}",
signed_header.header.height.value()
);

// validate that we have the validator set for the current height
if signed_header.header.height.value() != height {
error!("Validator set height does not match stored validator set");
Expand Down

0 comments on commit 1bbc381

Please sign in to comment.