Skip to content

Instantly share code, notes, and snippets.

@sontuphan
Created November 27, 2017 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sontuphan/0264f15f19faffd8e7788fe97024a2f0 to your computer and use it in GitHub Desktop.
Save sontuphan/0264f15f19faffd8e7788fe97024a2f0 to your computer and use it in GitHub Desktop.
function approvePoL(address _owner, uint _value)
private
returns (bool)
{
address _receiver = getPoL[_owner].receiver;
bool _success = _receiver.send(_value);
return _success;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment