Explicit public visibility on methods

This commit is contained in:
dmx374
2017-09-18 13:41:40 +02:00
committed by Francisco Giordano
parent bd84db735d
commit b395b06b65
24 changed files with 52 additions and 52 deletions

View File

@ -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++) {