fix problems with StandardToken

This commit is contained in:
Manuel Araoz
2016-10-14 10:55:16 -03:00
parent 30d437c731
commit a1f7de0ca1
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
pragma solidity ^0.4.0;
import './PullPayment.sol';
import './Token.sol';
/*
* Bounty

View File

@ -29,7 +29,7 @@ contract StandardToken is ERC20, SafeMath {
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
var _allowance = allowed[_from][msg.sender];
if (balances[_from] < _value ||
_allowance < _value)) {
_allowance < _value) {
throw;
}