Skip to content

Commit

Permalink
Merge pull request #178 from yangby-cryptape/feature/more-last-header…
Browse files Browse the repository at this point in the history
…s-for-a-newly-connected-peer

feat: get more last headers in the first proof of a newly connected peer
  • Loading branch information
quake authored Jan 10, 2024
2 parents 4147b4a + 0c653da commit 945b1dc
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/protocols/light_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -852,11 +852,19 @@ impl LightClientProtocol {
}
let builder = packed::GetLastStateProof::new_builder()
.last_hash(last_header.header().hash())
.start_hash(start_hash)
.start_number(start_number.pack())
.last_n_blocks(last_n_blocks.pack());
let content = if last_number - start_number <= last_n_blocks {
builder.difficulty_boundary(start_total_difficulty.pack())
let last_n_headers = self.storage.get_last_n_headers();

let (real_start_number, real_start_hash) = last_n_headers
.into_iter()
.find(|(num, _)| *num < start_number && last_number <= num + last_n_blocks)
.unwrap_or((start_number, start_hash));

builder
.start_hash(real_start_hash)
.start_number(real_start_number.pack())
.difficulty_boundary(start_total_difficulty.pack())
} else {
let (difficulty_boundary, difficulties) = sampling::sample_blocks(
start_number,
Expand All @@ -866,6 +874,8 @@ impl LightClientProtocol {
last_n_blocks,
);
builder
.start_hash(start_hash)
.start_number(start_number.pack())
.difficulty_boundary(difficulty_boundary.pack())
.difficulties(difficulties.into_iter().map(|inner| inner.pack()).pack())
}
Expand Down

0 comments on commit 945b1dc

Please sign in to comment.