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
parent
commit
9401775b7a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      types/tx_test.go

+ 1
- 1
types/tx_test.go 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
}

Loading…
Cancel
Save