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§
sourcefn get_kernel_inputs(&self) -> (StackInputs, AdviceInputs)
fn get_kernel_inputs(&self) -> (StackInputs, AdviceInputs)
Returns stack and advice inputs required to execute the transaction kernel.