contracts/migrations/2_deploy_contracts.js
Richard Ramos 06628093bc - Updated logic on Identity.sol to reflect changes on EIPs
- Added migration to deploy Identity contract
- Updated existing test cases to reflect changes on contract interface
2018-02-21 17:17:38 -04:00

6 lines
123 B
JavaScript

let Identity = artifacts.require("./Identity.sol");
module.exports = function(deployer) {
deployer.deploy(Identity);
};