From 0967228070a9671facda2bd5ac7b775d2a96c3c4 Mon Sep 17 00:00:00 2001 From: Brian W Bush Date: Sun, 10 Oct 2021 13:35:46 -0600 Subject: [PATCH] MANTIS-35 fixed debug output --- app/Mantra/Command/Chain.hs | 2 +- mantra.cabal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Mantra/Command/Chain.hs b/app/Mantra/Command/Chain.hs index 2c76c6e..af410da 100644 --- a/app/Mantra/Command/Chain.hs +++ b/app/Mantra/Command/Chain.hs @@ -76,7 +76,7 @@ main debugIO configFile output continue pointFile = debugIO $ "Hash " ++ hash' debugIO $ case script of - ScriptInAnyLang (SimpleScriptLanguage _) (SimpleScript _ script') -> show script + ScriptInAnyLang (SimpleScriptLanguage _) (SimpleScript _ script') -> show script' _ -> "" whenJust output $ \output' -> diff --git a/mantra.cabal b/mantra.cabal index ca1eef7..1fdde07 100644 --- a/mantra.cabal +++ b/mantra.cabal @@ -2,7 +2,7 @@ cabal-version: >= 1.10 name : mantra description : This tool provides several script-oriented utilities for the Cardano blockchain. In particular, it posts metadata or mints/burns tokens. It can also generate scripts, compute script addresses, compute the fingerprint of a token, and download scripts. -version : 0.5.1.0 +version : 0.5.1.1 license : MIT license-file : LICENSE author : Brian W Bush