aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/zeppelin/crowdsale/RefundVault.sol
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-07-05 20:32:32 +0800
committerLeonardo Alt <leo@ethereum.org>2018-07-12 18:53:49 +0800
commit3ebfcae8292da1d9f41ff20da1866c424404ee58 (patch)
tree0b6845c1598d81ed72ebe2b2d44272f6f51f284c /test/compilationTests/zeppelin/crowdsale/RefundVault.sol
parentc438b73f689b904152f4b8b636579317fb55e60a (diff)
downloaddexon-solidity-3ebfcae8292da1d9f41ff20da1866c424404ee58.tar.gz
dexon-solidity-3ebfcae8292da1d9f41ff20da1866c424404ee58.tar.zst
dexon-solidity-3ebfcae8292da1d9f41ff20da1866c424404ee58.zip
Update external tests and docs
Diffstat (limited to 'test/compilationTests/zeppelin/crowdsale/RefundVault.sol')
-rw-r--r--test/compilationTests/zeppelin/crowdsale/RefundVault.sol2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/zeppelin/crowdsale/RefundVault.sol b/test/compilationTests/zeppelin/crowdsale/RefundVault.sol
index 19346c42..b7db8ef2 100644
--- a/test/compilationTests/zeppelin/crowdsale/RefundVault.sol
+++ b/test/compilationTests/zeppelin/crowdsale/RefundVault.sol
@@ -37,7 +37,7 @@ contract RefundVault is Ownable {
require(state == State.Active);
state = State.Closed;
emit Closed();
- wallet.transfer(this.balance);
+ wallet.transfer(address(this).balance);
}
function enableRefunds() public onlyOwner {