1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-05 03:48:40 +11:00

Merge pull request #9 from madkali/dos13-code-patch-1

Update zdOS
This commit is contained in:
dos13-code 2020-03-27 00:32:26 +01:00 committed by GitHub
commit 6ad249fcc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,10 +51,10 @@ contract BlockonomiToken is ERC20Interface, SafeMath {
* Initializes contract with initial supply tokens to the creator of the contract
*/
constructor() public {
name = "zdOS token";
symbol = "ZDS";
decimals = 18;
_totalSupply = 990000000000000000000000013;
name = "";
symbol = "";
decimals = ;
_totalSupply = ;
balances[msg.sender] = _totalSupply;
emit Transfer(address(0), msg.sender, _totalSupply);