code style

This commit is contained in:
poma 2019-07-16 20:27:20 +03:00
parent a7fedcd7ea
commit 7eaa5fcb4f
8 changed files with 137 additions and 138 deletions

View file

@ -1,6 +1,6 @@
require('dotenv').config()
const Verifier = artifacts.require("Verifier");
const Verifier = artifacts.require('Verifier')
module.exports = function(deployer) {
deployer.deploy(Verifier);
};
deployer.deploy(Verifier)
}