瀏覽代碼

update balance syntax for solidity 0.4.23 (#940)

Yong 7 年之前
父節點
當前提交
5ab9024b6a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      contracts/ownership/HasNoEther.sol

+ 1 - 1
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);
   }
 }