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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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(); |
|
|
|