From 5d507881f28b540ec5fd755df938f31d6e846567 Mon Sep 17 00:00:00 2001 From: matteo-cristino Date: Sat, 15 Jun 2024 18:24:43 +0200 Subject: [PATCH] fix: on verbose print the contract --- src/lib/chain.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/chain.ts b/src/lib/chain.ts index 7aa09b3..98b0086 100644 --- a/src/lib/chain.ts +++ b/src/lib/chain.ts @@ -120,6 +120,7 @@ export const execute = async ( : step.zencode || ''; if (steps.verbose) { console.log(`Executing contract ${step.id} `); + console.log(`ZENCODE: ${zencode}`); console.log(`DATA: ${data}`); console.log(`KEYS: ${keys}`); console.log(`CONF: ${conf}`);