Explicit public visibility on methods
This commit is contained in:
committed by
Francisco Giordano
parent
bd84db735d
commit
b395b06b65
@ -11,11 +11,11 @@ import '../lifecycle/Pausable.sol';
|
||||
|
||||
contract PausableToken is StandardToken, Pausable {
|
||||
|
||||
function transfer(address _to, uint256 _value) whenNotPaused returns (bool) {
|
||||
function transfer(address _to, uint256 _value) whenNotPaused public returns (bool) {
|
||||
return super.transfer(_to, _value);
|
||||
}
|
||||
|
||||
function transferFrom(address _from, address _to, uint256 _value) whenNotPaused returns (bool) {
|
||||
function transferFrom(address _from, address _to, uint256 _value) whenNotPaused public returns (bool) {
|
||||
return super.transferFrom(_from, _to, _value);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user