fixed error handling in eval raw

This commit is contained in:
alessandrokonrad 2022-09-25 23:11:17 +02:00 committed by Kasey White
parent 25790287b7
commit 5ec991d83a
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ pub fn eval_phase_two_raw(
.iter() .iter()
.map(|r| r.encode_fragment().unwrap()) .map(|r| r.encode_fragment().unwrap())
.collect()), .collect()),
Err(_) => Err(Error::NoRedeemers), Err(err) => Err(err),
} }
} }
// MultiEraTx::AlonzoCompatible(tx, _) => match eval_tx(&tx, &utxos, &sc) { // MultiEraTx::AlonzoCompatible(tx, _) => match eval_tx(&tx, &utxos, &sc) {