Commit 7592122e by Manuel Araoz

fix indentation

parent 609869f0
...@@ -14,7 +14,7 @@ contract BasicToken is ERC20Basic { ...@@ -14,7 +14,7 @@ contract BasicToken is ERC20Basic {
mapping(address => uint) balances; mapping(address => uint) balances;
/* /*
* Fix for the ERC20 short address attack * Fix for the ERC20 short address attack
*/ */
modifier onlyPayloadSize(uint size) { modifier onlyPayloadSize(uint size) {
......
...@@ -10,7 +10,6 @@ import './ERC20Basic.sol'; ...@@ -10,7 +10,6 @@ import './ERC20Basic.sol';
*/ */
contract ERC20 is ERC20Basic { contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) constant returns (uint); function allowance(address owner, address spender) constant returns (uint);
function transferFrom(address from, address to, uint value); function transferFrom(address from, address to, uint value);
function approve(address spender, uint value); function approve(address spender, uint value);
event Approval(address indexed owner, address indexed spender, uint value); event Approval(address indexed owner, address indexed spender, uint value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment