fix: `Transfered` -> `Transferred* (#1357)
This commit is contained in:
parent
1a387afcd5
commit
d6d76c6024
|
@ -181,7 +181,7 @@ pub struct Call {
|
||||||
pub from: Address,
|
pub from: Address,
|
||||||
/// Recipient
|
/// Recipient
|
||||||
pub to: Address,
|
pub to: Address,
|
||||||
/// Transfered Value
|
/// Transferred Value
|
||||||
pub value: U256,
|
pub value: U256,
|
||||||
/// Gas
|
/// Gas
|
||||||
pub gas: U256,
|
pub gas: U256,
|
||||||
|
|
|
@ -36,7 +36,7 @@ pub struct Eip1559TransactionRequest {
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub gas: Option<U256>,
|
pub gas: Option<U256>,
|
||||||
|
|
||||||
/// Transfered value (None for no transfer)
|
/// Transferred value (None for no transfer)
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub value: Option<U256>,
|
pub value: Option<U256>,
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ pub struct TransactionRequest {
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub gas_price: Option<U256>,
|
pub gas_price: Option<U256>,
|
||||||
|
|
||||||
/// Transfered value (None for no transfer)
|
/// Transferred value (None for no transfer)
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub value: Option<U256>,
|
pub value: Option<U256>,
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ pub struct Transaction {
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub to: Option<Address>,
|
pub to: Option<Address>,
|
||||||
|
|
||||||
/// Transfered value
|
/// Transferred value
|
||||||
pub value: U256,
|
pub value: U256,
|
||||||
|
|
||||||
/// Gas Price, null for Type 2 transactions
|
/// Gas Price, null for Type 2 transactions
|
||||||
|
|
|
@ -11,7 +11,7 @@ use std::{collections::BTreeMap, fmt, str::FromStr};
|
||||||
pub struct TxpoolInspectSummary {
|
pub struct TxpoolInspectSummary {
|
||||||
/// Recipient (None when contract creation)
|
/// Recipient (None when contract creation)
|
||||||
pub to: Option<Address>,
|
pub to: Option<Address>,
|
||||||
/// Transfered value
|
/// Transferred value
|
||||||
pub value: U256,
|
pub value: U256,
|
||||||
/// Gas amount
|
/// Gas amount
|
||||||
pub gas: U256,
|
pub gas: U256,
|
||||||
|
|
Loading…
Reference in New Issue