This commit is contained in:
William Banfield
2022-03-09 16:51:23 -05:00
parent 209a5c73cb
commit 06f2d608ae

View File

@@ -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)