From cbe0eca3449039c0433f2fdd0e62535f7efbedf2 Mon Sep 17 00:00:00 2001 From: Koz Ross Date: Wed, 27 Sep 2023 11:21:00 +1300 Subject: [PATCH] Rename error around Ogmios balance --- src/Internal/BalanceTx/Error.purs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Internal/BalanceTx/Error.purs b/src/Internal/BalanceTx/Error.purs index d4678387f..739b9ec78 100644 --- a/src/Internal/BalanceTx/Error.purs +++ b/src/Internal/BalanceTx/Error.purs @@ -230,7 +230,9 @@ printTxEvaluationFailure transaction e = Ogmios.UnknownInputReferencedByRedeemer txIn -> line ("Unknown input referenced by redeemer: " <> show txIn) Ogmios.NonScriptInputReferencedByRedeemer txIn -> line - ("Non script input referenced by redeemer: " <> show txIn) + ( "Non-script input, or input without datum, referenced by redeemer: " <> + show txIn + ) Ogmios.IllFormedExecutionBudget Nothing -> line ("Ill formed execution budget: Execution budget missing") Ogmios.IllFormedExecutionBudget (Just { memory, steps }) ->