mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-06 21:15:27 -05:00
chore: fix typos (#9851)
This commit is contained in:
@@ -100,7 +100,7 @@ impl ExecInput {
|
||||
let (end_block, is_final_range, next_tx_num) = if all_tx_cnt <= tx_threshold {
|
||||
(target_block, true, target_block_body.next_tx_num())
|
||||
} else {
|
||||
// get tx block number. next_tx_num in this case will be less thean all_tx_cnt.
|
||||
// get tx block number. next_tx_num in this case will be less than all_tx_cnt.
|
||||
// So we are sure that transaction must exist.
|
||||
let end_block_number = provider
|
||||
.transaction_block(first_tx_num + tx_threshold)?
|
||||
|
||||
@@ -15,7 +15,7 @@ pub const NUM_OF_INDICES_IN_SHARD: usize = 2_000;
|
||||
/// Sometimes data can be too big to be saved for a single key. This helps out by dividing the data
|
||||
/// into different shards. Example:
|
||||
///
|
||||
/// `Address | Storagekey | 200` -> data is from transition 0 to 200.
|
||||
/// `Address | StorageKey | 200` -> data is from transition 0 to 200.
|
||||
///
|
||||
/// `Address | StorageKey | 300` -> data is from transition 201 to 300.
|
||||
#[derive(
|
||||
|
||||
Reference in New Issue
Block a user