Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
halaprix committed Oct 17, 2024
1 parent dee9ac7 commit f068e47
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ import hre from 'hardhat'

describe.only('AAVE V3 | Claim Rewards | E2E', async () => {
let snapshot: Snapshot
let provider: ethers.providers.JsonRpcProvider
let address: string
let signer: SignerWithAddress
let user: SignerWithAddress
let WETH: WETH
let USDC: ERC20
let config: RuntimeConfig
Expand All @@ -49,8 +47,6 @@ describe.only('AAVE V3 | Claim Rewards | E2E', async () => {
signer = await SignerWithAddress.create(
snapshot.config.signer as ethers.providers.JsonRpcSigner,
)
user = signer
provider = signer.provider as ethers.providers.JsonRpcProvider

address = await signer.getAddress()

Expand Down Expand Up @@ -129,7 +125,7 @@ describe.only('AAVE V3 | Claim Rewards | E2E', async () => {
impersonatedSigner,
).balanceOf(IMPERSONATED_SPARK_OWNER)
// Execute the claim rewards operation through the proxy
const [success, receipt] = await executeThroughDPMProxy(
const [success] = await executeThroughDPMProxy(
PROXY,
{
address: rewardsControllerProxyActionsAddress,
Expand Down

0 comments on commit f068e47

Please sign in to comment.