Replaced assert with require

This commit is contained in:
Tal Ater
2017-11-19 01:34:24 +02:00
parent 1d54b86a7c
commit 5fc53b6f2f
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ pragma solidity ^0.4.11;
contract ReentrancyAttack {
function callSender(bytes4 data) {
assert(msg.sender.call(data));
require(msg.sender.call(data));
}
}

View File

@ -27,7 +27,7 @@ contract ReentrancyMock is ReentrancyGuard {
if(n > 0) {
count();
bool result = this.call(func, n - 1);
assert(result == true);
require(result == true);
}
}