diff --git a/common/big.go b/common/big.go index 31bd589eb7..b552608bc7 100644 --- a/common/big.go +++ b/common/big.go @@ -28,9 +28,3 @@ var ( Big256 = big.NewInt(0xff) Big257 = big.NewInt(257) ) - -func String2Big(num string) *big.Int { - n := new(big.Int) - n.SetString(num, 0) - return n -}