change throw for require in MessageHelper contract@

This commit is contained in:
AugustoL
2018-01-15 21:15:21 -03:00
parent 685d2087ca
commit 8854966847

View File

@ -12,7 +12,7 @@ contract MessageHelper {
}
function fail() {
throw;
require(false);
}
function call(address to, bytes data) returns (bool) {