aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/zeppelin/payment
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-07-12 07:49:00 +0800
committerchriseth <chris@ethereum.org>2018-07-16 21:33:31 +0800
commitbdac82ecdbb6a4d27e9c5b11ce48d2d653a652e6 (patch)
treedb49e85ba17521aa55af555ab7b064894e587fbb /test/compilationTests/zeppelin/payment
parentaa08460d94f0e3ac8e067f89786175fb5ebba73b (diff)
downloaddexon-solidity-bdac82ecdbb6a4d27e9c5b11ce48d2d653a652e6.tar.gz
dexon-solidity-bdac82ecdbb6a4d27e9c5b11ce48d2d653a652e6.tar.zst
dexon-solidity-bdac82ecdbb6a4d27e9c5b11ce48d2d653a652e6.zip
Replace throw with revert() in compilation tests
Diffstat (limited to 'test/compilationTests/zeppelin/payment')
-rw-r--r--test/compilationTests/zeppelin/payment/PullPayment.sol6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/compilationTests/zeppelin/payment/PullPayment.sol b/test/compilationTests/zeppelin/payment/PullPayment.sol
index 2f3e1b51..bac1d019 100644
--- a/test/compilationTests/zeppelin/payment/PullPayment.sol
+++ b/test/compilationTests/zeppelin/payment/PullPayment.sol
@@ -33,18 +33,18 @@ contract PullPayment {
uint256 payment = payments[payee];
if (payment == 0) {
- throw;
+ revert();
}
if (address(this).balance < payment) {
- throw;
+ revert();
}
totalPayments = totalPayments.sub(payment);
payments[payee] = 0;
if (!payee.send(payment)) {
- throw;
+ revert();
}
}
}