Skip to content

Commit

Permalink
Fix code style issues with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Nov 29, 2023
1 parent e6933d3 commit 9f6e930
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion networks.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ const npmCommand = process.env.npm_lifecycle_event
const isTestEnvironment = npmCommand == "test" || npmCommand == "test:unit"

// Set EVM private keys (required)
const PRIVATE_KEY = process.env.PRIVATE_KEY || "0x0000000000000000000000000000000000000000000000000000000000000001"
const PRIVATE_KEY =
process.env.PRIVATE_KEY || "0x0000000000000000000000000000000000000000000000000000000000000001"

// TODO @dev - set this to run the accept.js task.
const SECOND_PRIVATE_KEY = process.env.SECOND_PRIVATE_KEY
Expand Down
16 changes: 8 additions & 8 deletions test/rBRLLPool.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,20 @@ describe("rBRLLPool", function () {
// const provider = new ethers.providers.JsonRpcProvider("http://localhost:8545")
// ethers.provider = provider
;[admin, deployer, drexInvestor, tselicInvestor, feeCollector] = await ethers.getSigners()
// deploy tokens
; ({ drexToken, tselicToken } = await deployTokensFixture(
deployer,
drexInvestor,
tselicInvestor
))
// deploy tokens
;({ drexToken, tselicToken } = await deployTokensFixture(
deployer,
drexInvestor,
tselicInvestor
))
swapRouter = await deployUniPoolFixture(deployer, tselicToken, drexToken)
if (TEST_CHAINLINK) {
; ({ functionsAddresses, autoConsumerContract } = await deployLocalChainlinkFunctions(
;({ functionsAddresses, autoConsumerContract } = await deployLocalChainlinkFunctions(
admin,
deployer
))
} else {
; ({ autoConsumerContract } = await deployMockPriceFeedFixture(deployer))
;({ autoConsumerContract } = await deployMockPriceFeedFixture(deployer))
}

rbrllpool = await deployrBRLLPoolFixture(admin, deployer, tselicToken, drexToken)
Expand Down

0 comments on commit 9f6e930

Please sign in to comment.