fixed missing script test

This commit is contained in:
alessandrokonrad 2022-09-19 17:17:15 +02:00
parent 0ba8787b97
commit f12540d8e2
1 changed files with 2 additions and 2 deletions

View File

@ -725,7 +725,7 @@ fn eval_extraneous_redeemer() {
match multi_era_tx { match multi_era_tx {
MultiEraTx::Babbage(tx) => { MultiEraTx::Babbage(tx) => {
eval_phase_two( assert!(eval_phase_two(
&tx, &tx,
&utxos, &utxos,
Some(&cost_mdl), Some(&cost_mdl),
@ -733,7 +733,7 @@ fn eval_extraneous_redeemer() {
&slot_config, &slot_config,
false, false,
) )
.unwrap(); .is_err());
} }
_ => unreachable!(), _ => unreachable!(),
}; };