pub trait ToTransactionKernelInputs {
    // Required method
    fn get_kernel_inputs(&self) -> (StackInputs, AdviceInputs);
}
Expand description

Defines how inputs required to execute a transaction kernel can be extracted from self.

Required Methods§

source

fn get_kernel_inputs(&self) -> (StackInputs, AdviceInputs)

Returns stack and advice inputs required to execute the transaction kernel.

Implementations on Foreign Types§

source§

impl ToTransactionKernelInputs for ExecutedTransaction

source§

impl ToTransactionKernelInputs for PreparedTransaction

source§

impl ToTransactionKernelInputs for TransactionWitness

Implementors§