Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix naming
  • Loading branch information
dariusdev committed Oct 18, 2017
1 parent 78464b7 commit 8c99136
Show file tree
Hide file tree
Showing 3 changed files with 5,867 additions and 3 deletions.
4 changes: 2 additions & 2 deletions contracts/CommunityTokenHolder.sol
Expand Up @@ -4,14 +4,14 @@ import "./Contribution.sol";
import "./SafeMath.sol";
import "./ERC20.sol";

contract DevTokensHolder is Controlled {
contract CommunityTokenHolder is Controlled {
using SafeMath for uint256;

uint256 collectedTokens;
Contribution contribution;
ERC20 aix;

function DevTokensHolder(address _controller, address _contribution, address _aix) {
function CommunityTokenHolder(address _controller, address _contribution, address _aix) {
controller = _controller;
contribution = Contribution(_contribution);
aix = ERC20(_aix);
Expand Down
2 changes: 1 addition & 1 deletion contracts/Exchanger.sol
Expand Up @@ -56,7 +56,7 @@ contract Exchanger is Controlled {

uint256 pre_sale_fixed_at = contribution.initializedBlock();

// Get current AIX ballance at contributions initialization-
// Get current APT ballance at contributions initialization-
uint256 balance = apt.balanceOfAt(msg.sender, pre_sale_fixed_at);

// total of aix to be distributed.
Expand Down

0 comments on commit 8c99136

Please sign in to comment.