Browse Source

Typo fix in transacter.go

pull/1943/head
Greg Szabo 7 years ago
committed by Anton Kaliaev
parent
commit
279d6a0ebb
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tm-bench/transacter.go

+ 1
- 1
tm-bench/transacter.go View File

@ -207,7 +207,7 @@ func generateTx(a int, b int, hosthash [16]byte) []byte {
}
// 32-40 current time
PutUvarint(tx[32:40], uint64(time.Now().Unix()))
binary.PutUvarint(tx[32:40], uint64(time.Now().Unix()))
// 40-64 random data
if _, err := rand.Read(tx[40:]); err != nil {


Loading…
Cancel
Save