From 9e17be3db1d26256f4b78de27c0ca95d6a584291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Steiger?= Date: Fri, 8 Feb 2019 18:45:55 +0100 Subject: [PATCH] Update ERC20.vy --- examples/tokens/ERC20.vy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tokens/ERC20.vy b/examples/tokens/ERC20.vy index 59c8a5e5e2..c61adfc0b8 100644 --- a/examples/tokens/ERC20.vy +++ b/examples/tokens/ERC20.vy @@ -74,7 +74,7 @@ def transfer(_to : address, _value : uint256) -> bool: def transferFrom(_from : address, _to : address, _value : uint256) -> bool: """ @dev Transfer tokens from one address to another. - Note that while this function emits an Approval event, this is not required as per the specification, + Note that while this function emits a Transfer event, this is not required as per the specification, and other compliant implementations may not emit the event. @param _from address The address which you want to send tokens from @param _to address The address which you want to transfer to