From cd4ca7e443a10ffaebcdb5d859ca0ea2d1942e05 Mon Sep 17 00:00:00 2001 From: cyhhao Date: Tue, 28 Feb 2023 00:09:01 +0800 Subject: [PATCH] fix --- scripts/deploy-ethstorage-v3.ts | 2 +- scripts/deploy-sli-v3.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy-ethstorage-v3.ts b/scripts/deploy-ethstorage-v3.ts index 321d74d..442cb9a 100644 --- a/scripts/deploy-ethstorage-v3.ts +++ b/scripts/deploy-ethstorage-v3.ts @@ -22,7 +22,7 @@ async function main() { await newHubReceipt.wait(); - let createHubReceipt = await hubFac.createHub({ nonce: nonce }); + let createHubReceipt = await hubFac.createHub(false, { nonce: nonce }); nonce++; await createHubReceipt.wait(); diff --git a/scripts/deploy-sli-v3.ts b/scripts/deploy-sli-v3.ts index 75c5ee8..46584a5 100644 --- a/scripts/deploy-sli-v3.ts +++ b/scripts/deploy-sli-v3.ts @@ -20,7 +20,7 @@ async function main() { let newHubReceipt = await hubFac.newHubImp({ nonce: nonce }); nonce++; - let createHubReceipt = await hubFac.createHub({ nonce: nonce }); + let createHubReceipt = await hubFac.createHub(false, { nonce: nonce }); nonce++; let hubAddr = await hubFac.hubs(0);