summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--migrations/2_deploy_recovery.js5
-rw-r--r--truffle.js6
2 files changed, 11 insertions, 0 deletions
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
}
},
};