mirror of
https://github.com/status-im/contracts.git
synced 2025-02-24 20:48:42 +00:00
- Added migration to deploy Identity contract - Updated existing test cases to reflect changes on contract interface
6 lines
123 B
JavaScript
6 lines
123 B
JavaScript
let Identity = artifacts.require("./Identity.sol");
|
|
|
|
module.exports = function(deployer) {
|
|
deployer.deploy(Identity);
|
|
};
|