Skip to content

Commit

Permalink
Merge pull request #16 from albertov19/patch-2
Browse files Browse the repository at this point in the history
Fixed Truffle Deploy Initial Supply
  • Loading branch information
crystalin committed Jul 20, 2020
2 parents 256f2e3 + e97c54c commit 2a684f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/truffle/migrations/2_deploy_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ var MyToken = artifacts.require("MyToken");

module.exports = function (deployer) {
// deployment steps
deployer.deploy(MyToken, 8000000, { gas: 4294967295 });
deployer.deploy(MyToken, "8000000000000000000000000", { gas: 4294967295 });
};

0 comments on commit 2a684f6

Please sign in to comment.