From 74f667bd8aedc787dd481c24b56ef9d2e574ac8f Mon Sep 17 00:00:00 2001 From: Jordi Baylina Date: Wed, 9 Nov 2016 18:28:40 +0100 Subject: [PATCH] More comments --- MiniMeToken.sol | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MiniMeToken.sol b/MiniMeToken.sol index 958e48c..e597bfa 100644 --- a/MiniMeToken.sol +++ b/MiniMeToken.sol @@ -33,15 +33,15 @@ contract MiniMeToken is Owned { string public version = 'H0.1'; //human 0.1 standard. Just an arbitrary versioning scheme. struct Checkpoint { - // snapshot when starts to take effect this assignation + // snapshot when starts to take effect this value uint fromBlock; - // balance assigned to token holder from this snapshot + // value used from the block uint value; } - MiniMeToken public parentToken; - uint public parentSnapShotBlock; - uint public creationBlock; + MiniMeToken public parentToken; // Parent token contract. 0x0 for a root token + uint public parentSnapShotBlock; // Block used as the initial ditstribution of the parent token. + uint public creationBlock; // Timestamp when the token was created mapping (address => Checkpoint[]) balances; mapping (address => mapping (address => uint256)) allowed; Checkpoint[] totalSupplyHistory;