Fix language for transfer function (#1744)

This commit is contained in:
William Entriken 2019-03-08 07:06:02 -05:00 committed by Nick Savers
parent 97ff231308
commit f98a60e1b1
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ function balanceOf(address _owner) public view returns (uint256 balance)
#### transfer #### transfer
Transfers `_value` amount of tokens to address `_to`, and MUST fire the `Transfer` event. Transfers `_value` amount of tokens to address `_to`, and MUST fire the `Transfer` event.
The function SHOULD `throw` if the `_from` account balance does not have enough tokens to spend. The function SHOULD `throw` if the message caller's account balance does not have enough tokens to spend.
*Note* Transfers of 0 values MUST be treated as normal transfers and fire the `Transfer` event. *Note* Transfers of 0 values MUST be treated as normal transfers and fire the `Transfer` event.