Skip to content

Instantly share code, notes, and snippets.

@Shashank-In
Created September 5, 2022 04:38
Show Gist options
  • Save Shashank-In/42a978476ace6039fc02aa8c777cde88 to your computer and use it in GitHub Desktop.
Save Shashank-In/42a978476ace6039fc02aa8c777cde88 to your computer and use it in GitHub Desktop.
pragma solidity 0.4.1;
contract ReturnValueCall {
function callchecked(address callee) public {
require(callee.call());
}
function callnotchecked(address callee) public {
callee.call();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment