From 9fc447c732c89b6dd6352c096042d8d82b44faed Mon Sep 17 00:00:00 2001 From: Mark Toda Date: Mon, 29 Jul 2024 17:21:53 -0400 Subject: [PATCH] fix: remove unused temp variable --- src/GasSnapshot.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/GasSnapshot.sol b/src/GasSnapshot.sol index e2326e2..b879755 100644 --- a/src/GasSnapshot.sol +++ b/src/GasSnapshot.sol @@ -12,8 +12,6 @@ contract GasSnapshot is Script { string public constant CHECK_ENV_VAR = "FORGE_SNAPSHOT_CHECK"; /// @notice save gas snapshots in this dir string public constant SNAP_DIR = ".forge-snapshots/"; - /// @notice temporary env variable to help with string parsing - string private constant TEMP_ENV_VAR = "_forge_snapshot_temp_gas"; /// @notice gas overhead for the snapshotting function itself uint256 private constant GAS_CALIBRATION = 100;