We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c854a commit 3751a23Copy full SHA for 3751a23
pallas-hardano/src/display/haskell_display.rs
@@ -360,9 +360,8 @@ impl HaskellDisplay for UtxoFailure {
360
provided.to_haskell_str_p()
361
),
362
ValueNotConservedUTxO(required, provided) => format!(
363
- "(ValueNotConservedUTxO {} {})",
364
- required.to_haskell_str_p(),
365
- provided.to_haskell_str_p()
+ "(ValueNotConservedUTxO {})",
+ Mismatch(required.to_owned(), provided.to_owned()).to_haskell_str_p()
366
367
OutputTooSmallUTxO(outputs) => {
368
format!("(OutputTooSmallUTxO {})", outputs.to_haskell_str_p())
0 commit comments