Replace constant with view in std/ contracts.

This commit is contained in:
Daniel Kirchner 2018-05-08 13:08:32 +02:00 committed by Alex Beregszaszi
parent 1a014f83cc
commit 5cbe3e1a50
2 changed files with 6 additions and 6 deletions

View File

@ -13,11 +13,11 @@ contract StandardToken is Token {
balance[_initialOwner] = _supply; balance[_initialOwner] = _supply;
} }
function balanceOf(address _account) constant public returns (uint) { function balanceOf(address _account) view public returns (uint) {
return balance[_account]; return balance[_account];
} }
function totalSupply() constant public returns (uint) { function totalSupply() view public returns (uint) {
return supply; return supply;
} }
@ -53,7 +53,7 @@ contract StandardToken is Token {
return true; return true;
} }
function allowance(address _owner, address _spender) constant public returns (uint256) { function allowance(address _owner, address _spender) view public returns (uint256) {
return m_allowance[_owner][_spender]; return m_allowance[_owner][_spender];
} }
} }

View File

@ -4,10 +4,10 @@ contract Token {
event Transfer(address indexed _from, address indexed _to, uint256 _value); event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value);
function totalSupply() constant public returns (uint256 supply); function totalSupply() view public returns (uint256 supply);
function balanceOf(address _owner) constant public returns (uint256 balance); function balanceOf(address _owner) view public returns (uint256 balance);
function transfer(address _to, uint256 _value) public returns (bool success); function transfer(address _to, uint256 _value) public returns (bool success);
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success); function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);
function approve(address _spender, uint256 _value) public returns (bool success); function approve(address _spender, uint256 _value) public returns (bool success);
function allowance(address _owner, address _spender) constant public returns (uint256 remaining); function allowance(address _owner, address _spender) view public returns (uint256 remaining);
} }