diff --git a/cardano-config/src/Cardano/TracingOrphanInstances/Shelley.hs b/cardano-config/src/Cardano/TracingOrphanInstances/Shelley.hs index 0b05bb0019b..623fb7000b8 100644 --- a/cardano-config/src/Cardano/TracingOrphanInstances/Shelley.hs +++ b/cardano-config/src/Cardano/TracingOrphanInstances/Shelley.hs @@ -260,8 +260,8 @@ renderBadInputsUTxOErr txIns renderValueNotConservedErr :: Coin -> Coin -> Value renderValueNotConservedErr consumed produced - | consumed > produced = String "This transaction has consumed more ADA than it has produced." - | consumed < produced = String "This transaction has produced more ADA than it has consumed." + | consumed > produced = String "This transaction has consumed more Lovelace than it has produced." + | consumed < produced = String "This transaction has produced more Lovelace than it has consumed." | otherwise = String "consumed == produced, this is not an error and this error should be impossible."