[][src]Struct rpc::v1::types::BlockTemplateTransaction

pub struct BlockTemplateTransaction {
    pub data: RawTransaction,
    pub txid: Option<H256>,
    pub hash: Option<H256>,
    pub depends: Option<Vec<u64>>,
    pub fee: Option<i64>,
    pub sigops: Option<i64>,
    pub weight: Option<i64>,
    pub required: bool,
}

Transaction data as included in BlockTemplate

Fields

Transaction data encoded in hexadecimal

Transaction id encoded in little-endian hexadecimal

Hash encoded in little-endian hexadecimal (including witness data)

Transactions before this one (by 1-based index in 'transactions' list) that must be present in the final block if this one is

Difference in value between transaction inputs and outputs (in Satoshis). For coinbase transactions, this is a negative Number of the total collected block fees (ie, not including the block subsidy). If key is not present, fee is unknown and clients MUST NOT assume there isn't one

Total SigOps cost, as counted for purposes of block limits. If key is not present, sigop cost is unknown and clients MUST NOT assume it is zero.

Total transaction weight, as counted for purposes of block limits.

If provided and true, this transaction must be in the final block

Trait Implementations

impl Debug for BlockTemplateTransaction
[src]

Formats the value using the given formatter. Read more

impl Default for BlockTemplateTransaction
[src]

Returns the "default value" for a type. Read more

impl PartialEq for BlockTemplateTransaction
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for BlockTemplateTransaction
[src]

impl Clone for BlockTemplateTransaction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<IndexedTransaction> for BlockTemplateTransaction
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for BlockTemplateTransaction

impl Sync for BlockTemplateTransaction

Blanket Implementations

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Important traits for &'a mut R

Immutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Important traits for &'a mut R

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

impl<T> Erased for T