aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/zeppelin/token/BasicToken.sol
diff options
context:
space:
mode:
authorErik Kundt <bitshift@posteo.org>2018-07-05 01:20:51 +0800
committerErik Kundt <bitshift@posteo.org>2018-07-05 01:20:51 +0800
commitfebbfd4204f72ea9371553dc3f2e349309b1bb0c (patch)
treef0543d5cb7948a13a555e9695a41b7f1053d798f /test/compilationTests/zeppelin/token/BasicToken.sol
parent7101a8905656d52cf9023a2e4340219d184920c3 (diff)
downloaddexon-solidity-febbfd4204f72ea9371553dc3f2e349309b1bb0c.tar.gz
dexon-solidity-febbfd4204f72ea9371553dc3f2e349309b1bb0c.tar.zst
dexon-solidity-febbfd4204f72ea9371553dc3f2e349309b1bb0c.zip
Adds visibility to compilation tests.
Diffstat (limited to 'test/compilationTests/zeppelin/token/BasicToken.sol')
-rw-r--r--test/compilationTests/zeppelin/token/BasicToken.sol4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/compilationTests/zeppelin/token/BasicToken.sol b/test/compilationTests/zeppelin/token/BasicToken.sol
index 8a3d8ead..bc085f85 100644
--- a/test/compilationTests/zeppelin/token/BasicToken.sol
+++ b/test/compilationTests/zeppelin/token/BasicToken.sol
@@ -19,7 +19,7 @@ contract BasicToken is ERC20Basic {
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
- function transfer(address _to, uint256 _value) {
+ function transfer(address _to, uint256 _value) public {
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(msg.sender, _to, _value);
@@ -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) view returns (uint256 balance) {
+ function balanceOf(address _owner) public view returns (uint256 balance) {
return balances[_owner];
}