Explicit public visibility on methods
This commit is contained in:
committed by
Francisco Giordano
parent
bd84db735d
commit
b395b06b65
@ -21,7 +21,7 @@ contract TokenDestructible is Ownable {
|
||||
* @notice The called token contracts could try to re-enter this contract. Only
|
||||
supply token contracts you trust.
|
||||
*/
|
||||
function destroy(address[] tokens) onlyOwner {
|
||||
function destroy(address[] tokens) onlyOwner public {
|
||||
|
||||
// Transfer tokens to owner
|
||||
for(uint256 i = 0; i < tokens.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user