mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-07 13:35:04 -05:00
chore: fix typos (#10260)
This commit is contained in:
@@ -370,14 +370,14 @@ tables! {
|
||||
table StorageChangeSets<Key = BlockNumberAddress, Value = StorageEntry, SubKey = B256>;
|
||||
|
||||
/// Stores the current state of an [`Account`] indexed with `keccak256Address`
|
||||
/// This table is in preparation for merkelization and calculation of state root.
|
||||
/// This table is in preparation for merklization and calculation of state root.
|
||||
/// We are saving whole account data as it is needed for partial update when
|
||||
/// part of storage is changed. Benefit for merkelization is that hashed addresses are sorted.
|
||||
/// part of storage is changed. Benefit for merklization is that hashed addresses are sorted.
|
||||
table HashedAccounts<Key = B256, Value = Account>;
|
||||
|
||||
/// Stores the current storage values indexed with `keccak256Address` and
|
||||
/// hash of storage key `keccak256key`.
|
||||
/// This table is in preparation for merkelization and calculation of state root.
|
||||
/// This table is in preparation for merklization and calculation of state root.
|
||||
/// Benefit for merklization is that hashed addresses/keys are sorted.
|
||||
table HashedStorages<Key = B256, Value = StorageEntry, SubKey = B256>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user