aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/zeppelin/ReentrancyGuard.sol
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/ReentrancyGuard.sol
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/ReentrancyGuard.sol')
-rw-r--r--test/compilationTests/zeppelin/ReentrancyGuard.sol2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/zeppelin/ReentrancyGuard.sol b/test/compilationTests/zeppelin/ReentrancyGuard.sol
index 60c7927b..7805ec07 100644
--- a/test/compilationTests/zeppelin/ReentrancyGuard.sol
+++ b/test/compilationTests/zeppelin/ReentrancyGuard.sol
@@ -27,7 +27,7 @@ contract ReentrancyGuard {
_;
rentrancy_lock = false;
} else {
- throw;
+ revert();
}
}