From 19546f21979485c79366c2847d1a8a4b154b6257 Mon Sep 17 00:00:00 2001 From: Alexander Bezobchuk Date: Fri, 28 Feb 2020 09:59:26 -0800 Subject: [PATCH] Update simapp/test_helpers.go --- simapp/test_helpers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simapp/test_helpers.go b/simapp/test_helpers.go index b4ef5dbe02..4232e7e8d1 100644 --- a/simapp/test_helpers.go +++ b/simapp/test_helpers.go @@ -272,8 +272,8 @@ func CreateTestPubKeys(numPubKeys int) []crypto.PubKey { // start at 10 to avoid changing 1 to 01, 2 to 02, etc for i := 100; i < (numPubKeys + 100); i++ { numString := strconv.Itoa(i) - buffer.WriteString("0B485CFC0EECC619440448436F8FC9DF40566F2369E72400281454CB552AF") //base pubkey string - buffer.WriteString(numString) //adding on final two digits to make pubkeys unique + buffer.WriteString("0B485CFC0EECC619440448436F8FC9DF40566F2369E72400281454CB552AF") // base pubkey string + buffer.WriteString(numString) // adding on final two digits to make pubkeys unique publicKeys = append(publicKeys, NewPubKeyFromHex(buffer.String())) buffer.Reset() }