From e5446d2f991b03dc9c51b32c8c6e2abda3fb298e Mon Sep 17 00:00:00 2001 From: Chalith Desaman Date: Fri, 15 Mar 2024 17:59:11 +0530 Subject: [PATCH] Added force terminate to the multisig template (#33) --- docker/code-templates/nodejs/multisig-contract/src/contract.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/code-templates/nodejs/multisig-contract/src/contract.js b/docker/code-templates/nodejs/multisig-contract/src/contract.js index b2f540b..64e416c 100644 --- a/docker/code-templates/nodejs/multisig-contract/src/contract.js +++ b/docker/code-templates/nodejs/multisig-contract/src/contract.js @@ -47,4 +47,4 @@ async function contract(ctx) { } const hpc = new HotPocket.Contract(); -hpc.init(contract); \ No newline at end of file +hpc.init(contract, null, true); \ No newline at end of file