Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Fix initial supply config constant #29

Merged
merged 1 commit into from
Jun 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/chain/include/eos/chain/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const static char SystemContractName[] = "sys";
const static char EosContractName[] = "eos";
const static char StakedBalanceContractName[] = "sbc";

const static ShareType InitialTokenSupply = Asset(90'000'000).amount;
const static ShareType InitialTokenSupply = Asset::fromString("90000000.00000000 EOS").amount;

const static int BlockIntervalSeconds = 3;

Expand Down