From a81ed74453ed7b9fe7e96a9906bc4def19b73e33 Mon Sep 17 00:00:00 2001 From: 0age <37939117+0age@users.noreply.github.com> Date: Mon, 1 Apr 2024 22:24:26 -0400 Subject: [PATCH] Update Tstorish.sol --- src/Tstorish.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tstorish.sol b/src/Tstorish.sol index e5566e3..0e59284 100644 --- a/src/Tstorish.sol +++ b/src/Tstorish.sol @@ -28,7 +28,7 @@ contract Tstorish { address private immutable _tloadTestContract; // Declare an immutable variable to store the initial TSTORE support status. - bool immutable _tstoreInitialSupport; + bool private immutable _tstoreInitialSupport; // Declare an immutable function type variable for the _setTstorish function // based on chain support for tstore at time of deployment. @@ -248,4 +248,4 @@ contract Tstorish { // available gas, as all forwarded gas will be consumed on revert. (ok, ) = tloadTestContract.staticcall{ gas: gasleft() / 10 }(""); } -} \ No newline at end of file +}