Log latest indexed block

This commit is contained in:
Roman Zeyde 2018-07-12 10:47:25 +03:00
parent 62a78f18ad
commit 125bfe0e15
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB

View File

@ -58,6 +58,7 @@ impl Parser {
.take_while(|h| indexed_blockhashes.contains(h.hash()))
.last()
.expect("no indexed header found");
debug!("last indexed block: {:?}", last_header);
last_indexed_block(last_header.hash())
}