We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c4d1d2 commit a8a6d59Copy full SHA for a8a6d59
migrations/2_deploy_contracts.js
@@ -4,9 +4,9 @@ var SpringToken = artifacts.require("./SPRINGToken.sol");
4
var Attestation = artifacts.require("./Attestation.sol");
5
6
module.exports = function(deployer, network, accounts) {
7
- deployer.deploy(SpringToken, 1000000)
+ deployer.deploy(SpringToken, 1000000)
8
.then(function() {
9
- return deployer.deploy(AirDrop, SpringToken);
+ return deployer.deploy(AirDrop, SpringToken.address);
10
}).then(function() {
11
return deployer.deploy(VanityURL);
12
0 commit comments