From 27e4568ff3f3d5d1640cd847a1926d24d0ca6d79 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 26 Oct 2023 16:16:11 +0200 Subject: [PATCH] Adapt deployment scripts --- scripts/wasmd/deploy_hackatom.js | 2 +- scripts/wasmd/deploy_ibc_reflect.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/wasmd/deploy_hackatom.js b/scripts/wasmd/deploy_hackatom.js index 19ab6b7a54..cb70174853 100755 --- a/scripts/wasmd/deploy_hackatom.js +++ b/scripts/wasmd/deploy_hackatom.js @@ -56,7 +56,7 @@ async function main() { uploadFee, "Upload hackatom contract", ); - console.info(`Upload succeeded. Receipt: ${JSON.stringify(uploadReceipt)}`); + console.info(`Upload succeeded. Receipt:`, uploadReceipt); const instantiateFee = calculateFee(500_000, gasPrice); for (const { label, msg, admin } of inits) { diff --git a/scripts/wasmd/deploy_ibc_reflect.js b/scripts/wasmd/deploy_ibc_reflect.js index f4b0876ace..05e2f545c1 100755 --- a/scripts/wasmd/deploy_ibc_reflect.js +++ b/scripts/wasmd/deploy_ibc_reflect.js @@ -39,7 +39,7 @@ async function main() { uploadFee, "Upload IBC reflect contract", ); - console.info(`Upload succeeded. Receipt: ${JSON.stringify(uploadReceipt)}`); + console.info(`Upload succeeded. Receipt:`, uploadReceipt); const instantiateFee = calculateFee(900_000, gasPrice); for (const { label, msg, admin } of inits) {