From 2ce4b6694c44183f96e391e85294c6b02d568a1e Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Tue, 6 Feb 2024 13:12:00 +0100 Subject: [PATCH] common: remove new unused constants --- common/big.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/common/big.go b/common/big.go index eed30048be..cbb562a28e 100644 --- a/common/big.go +++ b/common/big.go @@ -34,13 +34,3 @@ var ( U2560 = uint256.NewInt(0) ) - -var ( - Uint1 = uint256.NewInt(1) - Uint2 = uint256.NewInt(2) - Uint3 = uint256.NewInt(3) - Uint0 = uint256.NewInt(0) - Uint32 = uint256.NewInt(32) - Uint256 = uint256.NewInt(256) - Uint257 = uint256.NewInt(257) -)