Skip to content

Commit 3751a23

Browse files
committed
The fix for a breaking change
1 parent b6c854a commit 3751a23

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pallas-hardano/src/display/haskell_display.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,9 +360,8 @@ impl HaskellDisplay for UtxoFailure {
360360
provided.to_haskell_str_p()
361361
),
362362
ValueNotConservedUTxO(required, provided) => format!(
363-
"(ValueNotConservedUTxO {} {})",
364-
required.to_haskell_str_p(),
365-
provided.to_haskell_str_p()
363+
"(ValueNotConservedUTxO {})",
364+
Mismatch(required.to_owned(), provided.to_owned()).to_haskell_str_p()
366365
),
367366
OutputTooSmallUTxO(outputs) => {
368367
format!("(OutputTooSmallUTxO {})", outputs.to_haskell_str_p())

0 commit comments

Comments
 (0)