From ee7fbe95fccd5c7f8292270cf29b03269463a726 Mon Sep 17 00:00:00 2001 From: Isaac Kang Date: Wed, 25 Jul 2018 12:20:58 -0400 Subject: [PATCH] change comment to describe event emission i remember some students were confused about this --- 70518 - Seoul/MintableToken.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/70518 - Seoul/MintableToken.sol b/70518 - Seoul/MintableToken.sol index c4fa198..529b4f4 100644 --- a/70518 - Seoul/MintableToken.sol +++ b/70518 - Seoul/MintableToken.sol @@ -40,8 +40,8 @@ contract { balances[_to] = ; // Emit the Mint event with appropriate input parameters. ; - // Execute the Transfer function inherited from the StandardToken contract to deliver the minted tokens to the receiver. - // Transfer function requires 3 parameters: address tokens are coming from, address tokens are going to, amount of tokens. + // Emit the Transfer event inherited from the StandardToken contract to signal the minted tokens transferred to the recipient. + // Transfer event requires 3 parameters: address tokens are coming from, address tokens are going to, amount of tokens. Transfer( , , ); // Indicate that the operation was successful. ;