chore: fix some typos (#402)

This commit is contained in:
Bjerg
2022-12-13 10:20:47 +01:00
committed by GitHub
parent c3cda406d0
commit d949e2ae18
2 changed files with 14 additions and 14 deletions

View File

@ -22,34 +22,34 @@ pub struct Executor {
pub config: Config, pub config: Config,
} }
/// Contains old/new account change /// Contains old/new account changes
#[derive(Debug, Clone, Eq, PartialEq)] #[derive(Debug, Clone, Eq, PartialEq)]
pub enum AccountInfoChangeSet { pub enum AccountInfoChangeSet {
/// Account is newly created. /// The account is newly created.
Created { Created {
/// Newly created acc /// The newly created account.
new: Account, new: Account,
}, },
/// If account is deleted (selfdestructed) or if we have touched /// An account was deleted (selfdestructed) or we have touched
/// a empty account, we would need to remove/destroy it. /// an empty account and we need to remove/destroy it.
/// (Look at state clearing [EIP-158](https://eips.ethereum.org/EIPS/eip-158)) /// (Look at state clearing [EIP-158](https://eips.ethereum.org/EIPS/eip-158))
Destroyed { Destroyed {
/// Old account. /// The account that was destroyed.
old: Account, old: Account,
}, },
/// Account is changed. /// The account was changed.
Changed { Changed {
/// New account after transaction change. /// The account after the change.
new: Account, new: Account,
/// Old account before transaction. /// The account prior to the change.
old: Account, old: Account,
}, },
/// There is not change in account information (nonce/balance). /// Nothing was changed for the account (nonce/balance).
NoChange, NoChange,
} }
impl AccountInfoChangeSet { impl AccountInfoChangeSet {
/// Apply account ChangeSet to db tranasction /// Apply the changes from the changeset to a database transaction.
pub fn apply_to_db<'a, TX: DbTxMut<'a>>( pub fn apply_to_db<'a, TX: DbTxMut<'a>>(
self, self,
address: Address, address: Address,

View File

@ -36,12 +36,12 @@ pub trait DbCursorRO<'tx, T: Table> {
Self: Sized; Self: Sized;
} }
/// Read only curor over DupSort table. /// Read only cursor over DupSort table.
pub trait DbDupCursorRO<'tx, T: DupSort> { pub trait DbDupCursorRO<'tx, T: DupSort> {
/// Seeks for a `(key, value)` pair greater or equal than `key`. /// Seeks for a `(key, value)` pair greater or equal than `key`.
fn seek(&mut self, key: T::SubKey) -> PairResult<T>; fn seek(&mut self, key: T::SubKey) -> PairResult<T>;
/// Returns the next `(key, value)` pair of a DUPSORT table. /// Returns the next `(key, value)` pair of a DupSort table.
fn next_dup(&mut self) -> PairResult<T>; fn next_dup(&mut self) -> PairResult<T>;
/// Returns the next `(key, value)` pair skipping the duplicates. /// Returns the next `(key, value)` pair skipping the duplicates.
@ -50,7 +50,7 @@ pub trait DbDupCursorRO<'tx, T: DupSort> {
/// Returns the next `value` of a duplicate `key`. /// Returns the next `value` of a duplicate `key`.
fn next_dup_val(&mut self) -> ValueOnlyResult<T>; fn next_dup_val(&mut self) -> ValueOnlyResult<T>;
/// Returns an iterator starting at a key greater or equal than `start_key` of a DUPSORT /// Returns an iterator starting at a key greater or equal than `start_key` of a DupSort
/// table. /// table.
fn walk_dup<'cursor>( fn walk_dup<'cursor>(
&'cursor mut self, &'cursor mut self,