fix: solium errors - whitespace related

This commit is contained in:
Matt Condon
2018-01-15 15:57:34 -05:00
parent bd2f1773cd
commit 3b48a671fd
8 changed files with 13 additions and 9 deletions

View File

@ -24,7 +24,7 @@ contract TokenDestructible is Ownable {
function destroy(address[] tokens) onlyOwner public {
// Transfer tokens to owner
for(uint256 i = 0; i < tokens.length; i++) {
for (uint256 i = 0; i < tokens.length; i++) {
ERC20Basic token = ERC20Basic(tokens[i]);
uint256 balance = token.balanceOf(this);
token.transfer(owner, balance);