Created
July 14, 2017 21:58
-
-
Save dickolsson/4047384d4e8efa821d709a9236b57853 to your computer and use it in GitHub Desktop.
Example contract migration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var IronDoers = artifacts.require(“./IronDoers.sol”); | |
module.exports = function(deployer, network, accounts) { | |
deployer.deploy(IronDoers); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Watch out for the double quotes:
var IronDoers = artifacts.require("./IronDoers.sol");