mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-05-08 01:05:09 -04:00
code style
This commit is contained in:
parent
a7fedcd7ea
commit
7eaa5fcb4f
8 changed files with 137 additions and 138 deletions
|
@ -1,7 +1,7 @@
|
|||
require('dotenv').config({ path: '../.env' })
|
||||
const Mixer = artifacts.require("Mixer");
|
||||
const Verifier = artifacts.require("Verifier");
|
||||
const MiMC = artifacts.require("MiMC");
|
||||
const Mixer = artifacts.require('Mixer')
|
||||
const Verifier = artifacts.require('Verifier')
|
||||
const MiMC = artifacts.require('MiMC')
|
||||
|
||||
|
||||
module.exports = function(deployer) {
|
||||
|
@ -11,6 +11,6 @@ module.exports = function(deployer) {
|
|||
const miMC = await MiMC.deployed()
|
||||
await Mixer.link(MiMC, miMC.address)
|
||||
const mixer = await deployer.deploy(Mixer, verifier.address, AMOUNT, MERKLE_TREE_HEIGHT, EMPTY_ELEMENT)
|
||||
console.log("Mixer's address ", mixer.address)
|
||||
console.log('Mixer\'s address ', mixer.address)
|
||||
})
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue