From f91b49d3aac9d2b43ef4384cd3d00069d425f429 Mon Sep 17 00:00:00 2001 From: "Mark.B" Date: Tue, 27 Aug 2024 13:20:27 +0200 Subject: [PATCH] add cleanup --- hardhat.config.ts | 3 +-- src/Redistribution.sol | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index a782959a..afb7f005 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -191,7 +191,6 @@ const config: HardhatUserConfig = { etherscan: { apiKey: { mainnet: mainnetEtherscanKey || '', - sepolia: mainnetEtherscanKey || '', testnet: testnetEtherscanKey || '', testnetlight: testnetEtherscanKey || '', }, @@ -229,7 +228,7 @@ const config: HardhatUserConfig = { runOnCompile: false, }, gasReporter: { - enabled: true, + enabled: false, currency: 'USD', gasPriceApi: 'https://api.gnosisscan.io/api?module=proxy&action=eth_gasPrice', // https://docs.gnosischain.com/tools/oracles/gas-price token: 'GNO', diff --git a/src/Redistribution.sol b/src/Redistribution.sol index bb00c539..0e17cb71 100644 --- a/src/Redistribution.sol +++ b/src/Redistribution.sol @@ -16,7 +16,6 @@ interface IStakeRegistry { bytes32 overlay; uint256 stakeAmount; uint256 lastUpdatedBlockNumber; - bool isValue; } function freezeDeposit(address _owner, uint256 _time) external;