From 9136c053b10ae03d57e2946e06b058f56668d27c Mon Sep 17 00:00:00 2001 From: Jim McDonald Date: Mon, 12 Jun 2023 12:40:50 +0100 Subject: [PATCH] Remove print statement. --- util/mnemonic.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/util/mnemonic.go b/util/mnemonic.go index 63bc36b..a3901b3 100644 --- a/util/mnemonic.go +++ b/util/mnemonic.go @@ -14,7 +14,6 @@ package util import ( - "fmt" "regexp" "strings" @@ -67,7 +66,6 @@ func SeedFromMnemonic(mnemonic string) ([]byte, error) { bip39.SetWordList(wl) seed, err := bip39.NewSeedWithErrorChecking(expandMnemonic(mnemonic), mnemonicPassphrase) if err == nil { - fmt.Printf("Seed is %#x\n", seed) return seed, nil } }