Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos #1403

Open
wants to merge 3 commits into
base: nightly
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion full-node/sov-ethereum/src/gas_price/gas_oracle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ impl<C: sov_modules_api::Context> GasPriceOracle<C> {
// sort the transactions by effective tip
// but first filter those that should be ignored

// get the transactions (block.transactions is a enum but we only care about the 2nd arm)
// get the transactions (block.transactions is an enum but we only care about the 2nd arm)
let txs = match &block.transactions {
BlockTransactions::Full(txs) => txs,
_ => return Ok(None),
Expand Down
2 changes: 1 addition & 1 deletion full-node/sov-stf-runner/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ where
})
}

/// Starts a RPC server with provided rpc methods.
/// Starts an RPC server with provided rpc methods.
pub async fn start_rpc_server(
&self,
methods: RpcModule<()>,
Expand Down
2 changes: 1 addition & 1 deletion module-system/module-implementations/sov-bank/src/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ impl<C: sov_modules_api::Context> Token<C> {

/// Creates a token from a given set of parameters.
/// The `token_name`, `sender` address (as a `u8` slice), and the `salt` (`u64` number) are used as an input
/// to an hash function that computes the token address. Then the initial accounts and balances are populated
/// to a hash function that computes the token address. Then the initial accounts and balances are populated
/// from the `address_and_balances` slice and the `total_supply` of tokens is updated each time.
/// Returns a tuple containing the computed `token_address` and the created `token` object.
pub(crate) fn create(
Expand Down