Skip to content

Commit

Permalink
fix: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Jan 10, 2024
1 parent ef5b4d4 commit 4722c67
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion deploy/0-DataFeedConsumer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ import { DeployFunction } from 'hardhat-deploy/types'
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const { deployments, getNamedAccounts, network } = hre
const { deploy } = deployments
const { deployer, aggregatorProxy: aggregatorProxyAddress, aggregatorRouter: aggregatorRouterAddress } = await getNamedAccounts()
const {
deployer,
aggregatorProxy: aggregatorProxyAddress,
aggregatorRouter: aggregatorRouterAddress
} = await getNamedAccounts()

console.log('0-DataFeedConsumer.ts')

Expand Down
2 changes: 1 addition & 1 deletion scripts/read-data-through-router.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ethers } from 'hardhat'

const pair_name = "BTC-USDT"
const pair_name = 'BTC-USDT'

async function main() {
const userContract = await ethers.getContract('DataFeedConsumer')
Expand Down

0 comments on commit 4722c67

Please sign in to comment.