some fixes

This commit is contained in:
poma 2019-10-04 19:17:28 +03:00
parent 55b3644fd7
commit 7a184d67d2
4 changed files with 6 additions and 7 deletions

View file

@ -2,7 +2,7 @@
require('dotenv').config({ path: '../.env' })
const ETHMixer = artifacts.require('ETHMixer')
const Verifier = artifacts.require('Verifier')
const hasherContract = artifacts.require('hasher')
const hasherContract = artifacts.require('Hasher')
module.exports = function(deployer, network, accounts) {

View file

@ -2,7 +2,7 @@
require('dotenv').config({ path: '../.env' })
const ERC20Mixer = artifacts.require('ERC20Mixer')
const Verifier = artifacts.require('Verifier')
const hasherContract = artifacts.require('hasher')
const hasherContract = artifacts.require('Hasher')
const ERC20Mock = artifacts.require('ERC20Mock')