mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix(ChainTree): set first block on forked chain (#6821)
This commit is contained in:
@ -206,7 +206,7 @@ impl TransactionFetcher {
|
||||
|
||||
// tx is really big, pack request with single tx
|
||||
if size >= self.info.soft_limit_byte_size_pooled_transactions_response_on_pack_request {
|
||||
return hashes_from_announcement_iter.collect::<RequestTxHashes>();
|
||||
return hashes_from_announcement_iter.collect::<RequestTxHashes>()
|
||||
} else {
|
||||
acc_size_response = size;
|
||||
}
|
||||
@ -332,7 +332,7 @@ impl TransactionFetcher {
|
||||
);
|
||||
|
||||
max_retried_and_evicted_hashes.push(hash);
|
||||
continue;
|
||||
continue
|
||||
}
|
||||
*retries += 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user