Skip to content

Commit aedc691

Browse files
committed
add some more logs
1 parent d90d1d1 commit aedc691

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tuxedo-core/src/executive.rs

+4
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ impl<B: BlockT<Extrinsic = Transaction<V, C>>, V: Verifier, C: ConstraintChecker
7474
let mut input_utxos = Vec::new();
7575
let mut missing_inputs = Vec::new();
7676
for input in transaction.inputs.iter() {
77+
log::warn!(target: LOG_TARGET, "In executive, about to check a verifier.");
78+
log::warn!(target: crate::LOG_TARGET, "Redeemer length is {:?}", input.redeemer.len());
79+
log::warn!(target: crate::LOG_TARGET, "{:?}", input.redeemer);
80+
7781
if let Some(input_utxo) = TransparentUtxoSet::<V>::peek_utxo(&input.output_ref) {
7882
ensure!(
7983
input_utxo

0 commit comments

Comments
 (0)