fixed error handling in eval raw
This commit is contained in:
parent
25790287b7
commit
5ec991d83a
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue