Guest User

Untitled

a guest
Jan 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function callTheOtherContract(address _contractAddress)
  2. public
  3. payable
  4. {
  5. (bool success, bytes memory returnData) = (_contractAddress.call.value(msg.value)(abi.encode(bytes4(keccak256("callMe()")))));
  6. require(success);
  7. }
Add Comment
Please, Sign In to add comment