Remove print statement.

This commit is contained in:
Jim McDonald
2023-06-12 12:40:50 +01:00
parent 8efab62f8b
commit 9136c053b1

View File

@@ -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
}
}