fix: `Transfered` -> `Transferred* (#1357)

This commit is contained in:
DeGatchi 2022-06-08 20:28:32 +10:00 committed by GitHub
parent 1a387afcd5
commit d6d76c6024
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -181,7 +181,7 @@ pub struct Call {
pub from: Address,
/// Recipient
pub to: Address,
/// Transfered Value
/// Transferred Value
pub value: U256,
/// Gas
pub gas: U256,

View File

@ -36,7 +36,7 @@ pub struct Eip1559TransactionRequest {
#[serde(skip_serializing_if = "Option::is_none")]
pub gas: Option<U256>,
/// Transfered value (None for no transfer)
/// Transferred value (None for no transfer)
#[serde(skip_serializing_if = "Option::is_none")]
pub value: Option<U256>,

View File

@ -42,7 +42,7 @@ pub struct TransactionRequest {
#[serde(skip_serializing_if = "Option::is_none")]
pub gas_price: Option<U256>,
/// Transfered value (None for no transfer)
/// Transferred value (None for no transfer)
#[serde(skip_serializing_if = "Option::is_none")]
pub value: Option<U256>,

View File

@ -42,7 +42,7 @@ pub struct Transaction {
#[serde(skip_serializing_if = "Option::is_none")]
pub to: Option<Address>,
/// Transfered value
/// Transferred value
pub value: U256,
/// Gas Price, null for Type 2 transactions

View File

@ -11,7 +11,7 @@ use std::{collections::BTreeMap, fmt, str::FromStr};
pub struct TxpoolInspectSummary {
/// Recipient (None when contract creation)
pub to: Option<Address>,
/// Transfered value
/// Transferred value
pub value: U256,
/// Gas amount
pub gas: U256,