From 96d0d6ac4f3730952029c40ac9c3b0c42e18f3ad Mon Sep 17 00:00:00 2001 From: syntrust Date: Mon, 30 Sep 2024 16:03:33 +0800 Subject: [PATCH] revert --- scripts/deployL2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deployL2.js b/scripts/deployL2.js index 984850c..0971190 100644 --- a/scripts/deployL2.js +++ b/scripts/deployL2.js @@ -77,7 +77,7 @@ async function deployContract() { // fund 50 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("1") }); + const tx = await ethStorage.sendValue({ value: hre.ethers.utils.parseEther("50") }); await tx.wait(); console.log("balance of " + ethStorage.address, await hre.ethers.provider.getBalance(ethStorage.address));