From c7874dbf06692c984ae032044f1b1bb34c707313 Mon Sep 17 00:00:00 2001 From: Sonic Date: Mon, 22 Apr 2019 15:51:06 +0800 Subject: add recovery contract deploy script --- migrations/2_deploy_recovery.js | 5 +++++ truffle.js | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 migrations/2_deploy_recovery.js diff --git a/migrations/2_deploy_recovery.js b/migrations/2_deploy_recovery.js new file mode 100644 index 0000000..f7e823e --- /dev/null +++ b/migrations/2_deploy_recovery.js @@ -0,0 +1,5 @@ +var Recovery = artifacts.require("./Recovery.sol"); + +module.exports = function(deployer) { + deployer.deploy(Recovery); +}; diff --git a/truffle.js b/truffle.js index 2a3cb67..40122fb 100644 --- a/truffle.js +++ b/truffle.js @@ -40,6 +40,12 @@ module.exports = { host: "localhost", port: 8545, gas: 4712388 + }, + smoke: { + network_id: '*', + host: "localhost", + port: 8645, + gas: 4712388 } }, }; -- cgit v1.2.3