Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 2 additions & 5 deletions smart_token/PIXTokenCrowdsale_audited.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ contract SafeMath {
*/
interface Token {

/// @return total amount of tokens
function totalSupply() constant returns (uint256 supply);

/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance);
Expand Down Expand Up @@ -450,8 +447,8 @@ contract PIXToken is StandardToken, SafeMath {
return super.transferFrom(_from, _to, _value);
}

function() {
revert();
function() payable {
buyRecipient(msg.sender);
}

}
Binary file modified smart_token/PIXTokenCrowdsale_audited.sol.gpg
Binary file not shown.