From 279d6a0ebb0b1aea482ddba937d28e6f4bce6c71 Mon Sep 17 00:00:00 2001 From: Greg Szabo Date: Wed, 23 Aug 2017 11:04:04 -0400 Subject: [PATCH] Typo fix in transacter.go --- tm-bench/transacter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tm-bench/transacter.go b/tm-bench/transacter.go index 25e7442a1..ebe07a149 100644 --- a/tm-bench/transacter.go +++ b/tm-bench/transacter.go @@ -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 {