cli-output: Add option sigverify status to println_transaction()
output
This commit is contained in:
committed by
mergify[bot]
parent
22800054e6
commit
a2aea0ca33
@ -69,6 +69,7 @@ async fn block(slot: Slot) -> Result<(), Box<dyn std::error::Error>> {
|
||||
&transaction_with_meta.transaction,
|
||||
&transaction_with_meta.meta.map(|meta| meta.into()),
|
||||
" ",
|
||||
None,
|
||||
);
|
||||
}
|
||||
Ok(())
|
||||
@ -104,6 +105,7 @@ async fn confirm(signature: &Signature, verbose: bool) -> Result<(), Box<dyn std
|
||||
&confirmed_transaction.transaction.transaction,
|
||||
&confirmed_transaction.transaction.meta.map(|m| m.into()),
|
||||
" ",
|
||||
None,
|
||||
);
|
||||
}
|
||||
Ok(None) => println!("Finalized transaction details not available"),
|
||||
@ -183,6 +185,7 @@ pub async fn transaction_history(
|
||||
&transaction_with_meta.transaction,
|
||||
&transaction_with_meta.meta.clone().map(|m| m.into()),
|
||||
" ",
|
||||
None,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -122,6 +122,7 @@ fn output_entry(
|
||||
&transaction,
|
||||
&transaction_status,
|
||||
" ",
|
||||
None,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user