Update types/tx_test.go

Co-authored-by: M. J. Fromberger <fromberger@interchain.io>
This commit is contained in:
William Banfield
2022-03-15 12:35:42 -04:00
committed by GitHub
co-authored by M. J. Fromberger
parent 2a31ff7342
commit 9401775b7a
+1 -1
View File
@@ -302,6 +302,6 @@ func assertBadProof(t *testing.T, root []byte, bad []byte, good TxProof) {
}
func randInt(low, high int) int {
off := rand.Int() % (high - low)
return rand.Intn(high-low) + low
return low + off
}