#[derive(Debug, Clone, interactive_clap::InteractiveClap)]
#[interactive_clap(input_context = crate::GlobalContext)]
#[interactive_clap(output_context = PrintContext)]
pub struct PrintTransaction {
unsigned_transaction: crate::types::transaction::TransactionAsBase64,
}
#[derive(Debug, Clone)]
pub struct PrintContext;
impl PrintContext {
pub fn from_previous_context(
_previous_context: crate::GlobalContext,
scope: &<PrintTransaction as interactive_clap::ToInteractiveClapContextScope>::InteractiveClapContextScope,
) -> color_eyre::eyre::Result<Self> {
let unsigned_transaction: unc_primitives::transaction::Transaction =
scope.unsigned_transaction.clone().into();
eprintln!("\nUnsigned transaction (full):\n");
crate::common::print_full_unsigned_transaction(unsigned_transaction);
eprintln!();
Ok(Self)
}
}