Skip to content

Commit

Permalink
reduce qkc token for empty mining
Browse files Browse the repository at this point in the history
  • Loading branch information
ping-ke committed Dec 27, 2024
1 parent 37323d5 commit e6fea1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/deployL2-it.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand Down

0 comments on commit e6fea1d

Please sign in to comment.