From 94a9f2eb089ffd64eaab6150ef95e399d3d5cd21 Mon Sep 17 00:00:00 2001 From: Alistair Singh Date: Tue, 24 Dec 2024 22:11:52 +0200 Subject: [PATCH] better comments --- contracts/src/Gateway.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/src/Gateway.sol b/contracts/src/Gateway.sol index fdd3445a4c..6357550640 100644 --- a/contracts/src/Gateway.sol +++ b/contracts/src/Gateway.sol @@ -117,11 +117,11 @@ contract Gateway is IGateway, IInitializable, IUpgradable { tstore(0, 1) } - // Execute the function here + // Execute the function here. _; assembly { - // Reset the flag as the function has completed executing. + // Clear the flag as the function has completed execution. tstore(0, 0) } }