Skip to content

Commit

Permalink
fix: incorrect data in log outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
yangby-cryptape committed Sep 27, 2023
1 parent 9755a99 commit 83c3a6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ fn print_headers(headers: &[VerifiableHeader]) {
debug!("all headers in response:");
for h in headers {
let number = h.header().number();
let hash = h.header().number();
let hash = h.header().hash();
debug!(">>> header {number:9}: {hash:#x}");
}
debug!("all headers in response finished.");
Expand Down

0 comments on commit 83c3a6b

Please sign in to comment.