From 193511519d4930b3aaaf7526d98c31e25616f0c0 Mon Sep 17 00:00:00 2001 From: C4 <81770958+code423n4@users.noreply.github.com> Date: Mon, 30 Jan 2023 11:34:25 -0800 Subject: [PATCH] Report for issue #650 updated by carlitox477 --- data/carlitox477-G.md | 1 - 1 file changed, 1 deletion(-) diff --git a/data/carlitox477-G.md b/data/carlitox477-G.md index afcb66d..0034d06 100644 --- a/data/carlitox477-G.md +++ b/data/carlitox477-G.md @@ -268,7 +268,6 @@ This can be avoid by refactoring the code: ``` In the case of ```claim``` function in ```Quest``` contract, function ```isClaimed``` is called inside the loop, which make use of ```claimedList``` state variable. In order to save gas using a storage pointer, the loop should be refactored to: -claimedList[tokenId_] == true; ```diff // Quest.claim