Guest User

Untitled

a guest
Jan 17th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
  2. require(_value <= allowance[_from][msg.sender]); // Check allowance
  3. allowance[_from][msg.sender] -= _value;
  4. _transfer(_from, _to, _value);
  5. return true;
  6. }
Add Comment
Please, Sign In to add comment