From fa6fc47fa3ab9c0b887b4a00134719b83f3070a7 Mon Sep 17 00:00:00 2001 From: sanchaymittal Date: Thu, 4 May 2023 16:08:47 +0900 Subject: [PATCH] fix: make storage variable immutable !review --- contracts/InstadappTarget.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/InstadappTarget.sol b/contracts/InstadappTarget.sol index d46d574..7959956 100644 --- a/contracts/InstadappTarget.sol +++ b/contracts/InstadappTarget.sol @@ -18,7 +18,7 @@ contract InstadappTarget is IXReceiver, InstadappAdapter { using SafeERC20 for IERC20; /// Storage /// @dev This is the address of the Connext contract. - IConnext public connext; + IConnext public immutable connext; /// Events /// @dev This event is emitted when the authCast function is called.