From 20abad28055a2f91df48a90f8bb6009279a4cb35 Mon Sep 17 00:00:00 2001 From: Eddine OMAR <19561505+edd34@users.noreply.github.com> Date: Tue, 27 Jul 2021 18:16:19 +0300 Subject: [PATCH] fix #113 typo : complaint -> compliant (#114) --- contracts/CErc20.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/CErc20.sol b/contracts/CErc20.sol index bbbf10efa..ddf625bcd 100644 --- a/contracts/CErc20.sol +++ b/contracts/CErc20.sol @@ -199,7 +199,7 @@ contract CErc20 is CToken, CErc20Interface { case 0 { // This is a non-standard ERC-20 success := not(0) // set success to true } - case 32 { // This is a complaint ERC-20 + case 32 { // This is a compliant ERC-20 returndatacopy(0, 0, 32) success := mload(0) // Set `success = returndata` of external call }