Commit 7592122e by Manuel Araoz

fix indentation

parent 609869f0
......@@ -14,9 +14,9 @@ contract BasicToken is ERC20Basic {
mapping(address => uint) balances;
/*
* Fix for the ERC20 short address attack
*/
/*
* Fix for the ERC20 short address attack
*/
modifier onlyPayloadSize(uint size) {
if(msg.data.length < size + 4) {
throw;
......
......@@ -10,7 +10,6 @@ import './ERC20Basic.sol';
*/
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) constant returns (uint);
function transferFrom(address from, address to, uint value);
function approve(address 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