mirror of
https://github.com/tornadocash/tornado-nova
synced 2024-02-02 14:53:56 +01:00
lint fix
This commit is contained in:
parent
c6eb851f54
commit
8f9c061b03
@ -14,7 +14,7 @@ const { Keypair } = require('../src/keypair')
|
|||||||
|
|
||||||
describe('TornadoPool', function () {
|
describe('TornadoPool', function () {
|
||||||
this.timeout(20000)
|
this.timeout(20000)
|
||||||
let tornadoPool, sender, gov, messenger
|
let gov, messenger
|
||||||
|
|
||||||
async function deploy(contractName, ...args) {
|
async function deploy(contractName, ...args) {
|
||||||
const Factory = await ethers.getContractFactory(contractName)
|
const Factory = await ethers.getContractFactory(contractName)
|
||||||
@ -23,7 +23,7 @@ describe('TornadoPool', function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function fixture() {
|
async function fixture() {
|
||||||
;[sender, gov] = await ethers.getSigners()
|
;[, gov] = await ethers.getSigners()
|
||||||
const verifier2 = await deploy('Verifier2')
|
const verifier2 = await deploy('Verifier2')
|
||||||
const verifier16 = await deploy('Verifier16')
|
const verifier16 = await deploy('Verifier16')
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ describe('TornadoPool', function () {
|
|||||||
await messenger.deployed()
|
await messenger.deployed()
|
||||||
|
|
||||||
const CrossChainUpgradeableProxy = await ethers.getContractFactory('CrossChainUpgradeableProxy')
|
const CrossChainUpgradeableProxy = await ethers.getContractFactory('CrossChainUpgradeableProxy')
|
||||||
proxy = await CrossChainUpgradeableProxy.deploy(
|
const proxy = await CrossChainUpgradeableProxy.deploy(
|
||||||
tornadoPoolImpl.address,
|
tornadoPoolImpl.address,
|
||||||
gov.address,
|
gov.address,
|
||||||
[],
|
[],
|
||||||
@ -47,7 +47,7 @@ describe('TornadoPool', function () {
|
|||||||
await proxy.deployed()
|
await proxy.deployed()
|
||||||
|
|
||||||
/** @type {TornadoPool} */
|
/** @type {TornadoPool} */
|
||||||
tornadoPool = Pool.attach(proxy.address)
|
const tornadoPool = Pool.attach(proxy.address)
|
||||||
|
|
||||||
await tornadoPool.initialize(toFixedHex(root))
|
await tornadoPool.initialize(toFixedHex(root))
|
||||||
return { tornadoPool }
|
return { tornadoPool }
|
||||||
|
Loading…
Reference in New Issue
Block a user