[][src]Struct grin_core::core::transaction::Output

pub struct Output {
    pub features: OutputFeatures,
    pub commit: Commitment,
    pub proof: RangeProof,
}

Output for a transaction, defining the new ownership of coins that are being transferred. The commitment is a blinded value for the output while the range proof guarantees the commitment includes a positive value without overflow and the ownership of the private key.

Fields

features: OutputFeatures

Options for an output's structure or use

commit: Commitment

The homomorphic commitment representing the output amount

proof: RangeProof

A proof that the commitment is in the right range

Methods

impl Output[src]

pub fn commitment(&self) -> Commitment[src]

Commitment for the output

pub fn is_coinbase(&self) -> bool[src]

Is this a coinbase kernel?

pub fn is_plain(&self) -> bool[src]

Is this a plain kernel?

pub fn proof(&self) -> RangeProof[src]

Range proof for the output

pub fn verify_proof(&self) -> Result<(), Error>[src]

Validates the range proof using the commitment

pub fn batch_verify_proofs(
    commits: &Vec<Commitment>,
    proofs: &Vec<RangeProof>
) -> Result<(), Error>
[src]

Batch validates the range proofs using the commitments

Trait Implementations

impl DefaultHashable for Output[src]

impl Writeable for Output[src]

Implementation of Writeable for a transaction Output, defines how to write an Output as binary.

impl Readable for Output[src]

Implementation of Readable for a transaction Output, defines how to read an Output from a binary stream.

impl PMMRable for Output[src]

We can build an Output MMR but store instances of OutputIdentifier in the MMR data file.

type E = OutputIdentifier

The type of element actually stored in the MMR data file. This allows us to store Hash elements in the header MMR for variable size BlockHeaders. Read more

impl PartialOrd<Output> for Output[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<Output> for Output[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for Output[src]

impl Ord for Output[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

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

Restrict a value to a certain interval. Read more

impl Eq for Output[src]

impl From<Output> for OutputIdentifier[src]

impl Clone for Output[src]

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

Performs copy-assignment from source. Read more

impl Hash for Output[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Output[src]

impl Serialize for Output[src]

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

Auto Trait Implementations

impl Send for Output

impl Unpin for Output

impl Sync for Output

impl UnwindSafe for Output

impl RefUnwindSafe for Output

Blanket Implementations

impl<D> Hashed for D where
    D: DefaultHashable
[src]

impl<H> ShortIdentifiable for H where
    H: Hashed
[src]

fn short_id(&Self, &Hash, u64) -> ShortId[src]

Generate a short_id via the following -

  • extract k0/k1 from block_hash hashed with the nonce (first two u64 values) * initialize a siphasher24 with k0/k1
    • self.hash() passing in the siphasher24 instance
    • drop the 2 most significant bytes (to return a 6 byte short_id)

impl<T> PMMRIndexHashable for T where
    T: DefaultHashable
[src]

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> 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<T> Erased for T