Browse Source
Update types/tx_test.go
Co-authored-by: M. J. Fromberger <fromberger@interchain.io>
pull/8094/head
William Banfield
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
types/tx_test.go
|
|
@ -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 |
|
|
|
} |