fix: `Transfered` -> `Transferred* (#1357)
This commit is contained in:
parent
1a387afcd5
commit
d6d76c6024
|
@ -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,
|
||||
|
|
|
@ -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>,
|
||||
|
||||
|
|
|
@ -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>,
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue