Store kredits tokens as wei with 18 decimals #91

Merged
bumi merged 2 commits from feature/store-balance-as-wei into master 2019-04-10 13:51:37 +00:00
Showing only changes of commit 4d2e0ea84b - Show all commits

View File

@ -15,7 +15,7 @@ contract Token is ERC20Token, AragonApp {
function initialize(bytes32[4] _appIds) public onlyInit {
appIds = _appIds;
name = 'Kredits';
symbol = 'K';
symbol = '₭S';
decimals = 18;
initialized();
}