Browse Source

Merge pull request #229 from lukechilds/patch-2

Fix typo in index.rs
patch-3
Roman Zeyde 5 years ago
committed by GitHub
parent
commit
d4aa402e6b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/index.rs

2
src/index.rs

@ -236,7 +236,7 @@ fn read_indexed_headers(store: &dyn ReadStore) -> HeaderList {
Some(row) => deserialize(&row).unwrap(),
None => Sha256dHash::default(),
};
trace!("lastest indexed blockhash: {}", latest_blockhash);
trace!("latest indexed blockhash: {}", latest_blockhash);
let mut map = HeaderMap::new();
for row in store.scan(b"B") {
let key: BlockKey = bincode::deserialize(&row.key).unwrap();

Loading…
Cancel
Save