Merges the keybase and Ledger code from go-crypto (which is no more) into the SDK Adds support for Ledger into gaiacli Cherry-picks updated error handling from #1158
16 lines
345 B
Go
16 lines
345 B
Go
package bip39
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestWordCodec_NewMnemonic(t *testing.T) {
|
|
_, err := NewMnemonic(FundRaiser)
|
|
assert.NoError(t, err, "unexpected error generating fundraiser mnemonic")
|
|
|
|
_, err = NewMnemonic(FreshKey)
|
|
assert.NoError(t, err, "unexpected error generating new 24-word mnemonic")
|
|
}
|