diff --git a/contracts/ownership/HasNoEther.sol b/contracts/ownership/HasNoEther.sol index 6ce449b2c..1ddefca91 100644 --- a/contracts/ownership/HasNoEther.sol +++ b/contracts/ownership/HasNoEther.sol @@ -36,6 +36,6 @@ contract HasNoEther is Ownable { * @dev Transfer all Ether held by the contract to the owner. */ function reclaimEther() external onlyOwner { - owner.transfer(this.balance); + owner.transfer(address(this).balance); } }