From e6fea1de2c1218f6f0d538bf6c7048013d45265d Mon Sep 17 00:00:00 2001 From: pingke Date: Fri, 27 Dec 2024 09:34:34 +0800 Subject: [PATCH] reduce qkc token for empty mining --- scripts/deployL2-it.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deployL2-it.js b/scripts/deployL2-it.js index f853769..e72f9dd 100644 --- a/scripts/deployL2-it.js +++ b/scripts/deployL2-it.js @@ -75,9 +75,9 @@ async function deployContract() { new Date().toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" }) ); - // fund 5000 qkc into the storage contract to give reward for empty mining + // fund 500 qkc into the storage contract to give reward for empty mining const ethStorage = StorageContract.attach(ethStorageProxy.address); - const tx = await ethStorage.sendValue({ value: hre.ethers.utils.parseEther("5000") }); + const tx = await ethStorage.sendValue({ value: hre.ethers.utils.parseEther("500") }); await tx.wait(); console.log("balance of " + ethStorage.address, await hre.ethers.provider.getBalance(ethStorage.address));