aboutsummaryrefslogtreecommitdiffstats
path: root/test/contracts/Wallet.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-09-12 23:39:16 +0800
committerGitHub <noreply@github.com>2018-09-12 23:39:16 +0800
commit9214c7c34f5e4501a50cb29de964bbf04131f9a3 (patch)
treefedf7b035e527103f178f9670bce4cbbc81d283d /test/contracts/Wallet.cpp
parent1994b51ef3eb8de3617efec9747979c9fb5ed453 (diff)
parent879251a78b2d4e26dc71299d2d7ca989d0855d61 (diff)
downloaddexon-solidity-9214c7c34f5e4501a50cb29de964bbf04131f9a3.tar
dexon-solidity-9214c7c34f5e4501a50cb29de964bbf04131f9a3.tar.gz
dexon-solidity-9214c7c34f5e4501a50cb29de964bbf04131f9a3.tar.bz2
dexon-solidity-9214c7c34f5e4501a50cb29de964bbf04131f9a3.tar.lz
dexon-solidity-9214c7c34f5e4501a50cb29de964bbf04131f9a3.tar.xz
dexon-solidity-9214c7c34f5e4501a50cb29de964bbf04131f9a3.tar.zst
dexon-solidity-9214c7c34f5e4501a50cb29de964bbf04131f9a3.zip
Merge pull request #4953 from ethereum/addressPayableTests
Update test suite to use address payable.
Diffstat (limited to 'test/contracts/Wallet.cpp')
-rw-r--r--test/contracts/Wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/Wallet.cpp b/test/contracts/Wallet.cpp
index a2e764fb..e0e3045c 100644
--- a/test/contracts/Wallet.cpp
+++ b/test/contracts/Wallet.cpp
@@ -375,7 +375,7 @@ contract Wallet is multisig, multiowned, daylimit {
}
// destroys the contract sending everything to `_to`.
- function kill(address _to) onlymanyowners(keccak256(msg.data)) external {
+ function kill(address payable _to) onlymanyowners(keccak256(msg.data)) external {
selfdestruct(_to);
}