From 06f2d608ae478827cf1bea84e04ca38c136f1c9b Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 9 Mar 2022 16:51:23 -0500 Subject: [PATCH] deadcode --- types/tx_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/types/tx_test.go b/types/tx_test.go index 1366b8802..d77ba00e8 100644 --- a/types/tx_test.go +++ b/types/tx_test.go @@ -1,7 +1,6 @@ package types import ( - mrand "math/rand" "testing" "github.com/stretchr/testify/assert" @@ -17,11 +16,6 @@ func makeTxs(cnt, size int) Txs { return txs } -func randInt(low, high int) int { - off := mrand.Int() % (high - low) - return low + off -} - func TestTxIndex(t *testing.T) { for i := 0; i < 20; i++ { txs := makeTxs(15, 60)