From 9d23fd80130ca1d020cf3ba494751fd5e3aa5fde Mon Sep 17 00:00:00 2001 From: Daniel Kirchner Date: Mon, 2 Jul 2018 11:14:28 +0200 Subject: Update compilation tests. --- test/compilationTests/zeppelin/token/BasicToken.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/compilationTests/zeppelin/token/BasicToken.sol') diff --git a/test/compilationTests/zeppelin/token/BasicToken.sol b/test/compilationTests/zeppelin/token/BasicToken.sol index 831f706e..8a3d8ead 100644 --- a/test/compilationTests/zeppelin/token/BasicToken.sol +++ b/test/compilationTests/zeppelin/token/BasicToken.sol @@ -30,7 +30,7 @@ contract BasicToken is ERC20Basic { * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ - function balanceOf(address _owner) constant returns (uint256 balance) { + function balanceOf(address _owner) view returns (uint256 balance) { return balances[_owner]; } -- cgit v1.2.3