From ae4a1d63d2111788e2ffacd0cd57b57a1c6ecea6 Mon Sep 17 00:00:00 2001 From: Ryan O'Hara-Reid Date: Sat, 22 Jul 2017 10:09:06 +1000 Subject: [PATCH] Fixed typo --- common/common.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/common.go b/common/common.go index 2eb1d263..f7ff73c9 100644 --- a/common/common.go +++ b/common/common.go @@ -30,7 +30,7 @@ const ( HashSHA1 = iota HashSHA256 HashSHA512 - HashSHA512_348 + HashSHA512_384 SatoshisPerBTC = 100000000 SatoshisPerLTC = 100000000 WeiPerEther = 1000000000000000000 @@ -70,7 +70,7 @@ func GetHMAC(hashType int, input, key []byte) []byte { { hash = sha512.New } - case HashSHA512_348: + case HashSHA512_384: { hash = sha512.New384 }