[][src]Struct grin_wallet_libwallet::TxLogEntry

pub struct TxLogEntry {
    pub parent_key_id: Identifier,
    pub id: u32,
    pub tx_slate_id: Option<Uuid>,
    pub tx_type: TxLogEntryType,
    pub creation_ts: DateTime<Utc>,
    pub confirmation_ts: Option<DateTime<Utc>>,
    pub confirmed: bool,
    pub num_inputs: usize,
    pub num_outputs: usize,
    pub amount_credited: u64,
    pub amount_debited: u64,
    pub fee: Option<u64>,
    pub messages: Option<ParticipantMessages>,
    pub stored_tx: Option<String>,
}

Optional transaction information, recorded when an event happens to add or remove funds from a wallet. One Transaction log entry maps to one or many outputs

Fields

parent_key_id: Identifier

BIP32 account path used for creating this tx

id: u32

Local id for this transaction (distinct from a slate transaction id)

tx_slate_id: Option<Uuid>

Slate transaction this entry is associated with, if any

tx_type: TxLogEntryType

Transaction type (as above)

creation_ts: DateTime<Utc>

Time this tx entry was created #[serde(with = "tx_date_format")]

confirmation_ts: Option<DateTime<Utc>>

Time this tx was confirmed (by this wallet) #[serde(default, with = "opt_tx_date_format")]

confirmed: bool

Whether the inputs+outputs involved in this transaction have been confirmed (In all cases either all outputs involved in a tx should be confirmed, or none should be; otherwise there's a deeper problem)

num_inputs: usize

number of inputs involved in TX

num_outputs: usize

number of outputs involved in TX

amount_credited: u64

Amount credited via this transaction

amount_debited: u64

Amount debited via this transaction

fee: Option<u64>

Fee

messages: Option<ParticipantMessages>

Message data, stored as json

stored_tx: Option<String>

Location of the store transaction, (reference or resending)

Methods

impl TxLogEntry[src]

pub fn new(parent_key_id: Identifier, t: TxLogEntryType, id: u32) -> Self[src]

Return a new blank with TS initialised with next entry

pub fn sum_confirmed(txs: &Vec<TxLogEntry>) -> (u64, u64)[src]

Given a vec of TX log entries, return credited + debited sums

pub fn update_confirmation_ts(&mut self)[src]

Update confirmation TS with now

Trait Implementations

impl Clone for TxLogEntry[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for TxLogEntry[src]

impl Serialize for TxLogEntry[src]

impl<'de> Deserialize<'de> for TxLogEntry[src]

impl Writeable for TxLogEntry[src]

impl Readable for TxLogEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Send + Sync + Clone

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> UnsafeAny for T where
    T: Any

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,