Skip to content

Commit

Permalink
fix(key-derivation): no return ‘await’
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepdefic1t committed Nov 24, 2020
1 parent 194820e commit 620b2e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/key-derivation.js
Expand Up @@ -89,7 +89,7 @@ function trySeedChainCodeToKeypairV1(seed, chainCode) {

async function mnemonicToRootKeypairV2(mnemonic, password) {
const seed = mnemonicToSeedV2(mnemonic)
return await seedToKeypairV2(seed, password)
return seedToKeypairV2(seed, password)
}

function mnemonicToSeedV2(mnemonic) {
Expand Down

0 comments on commit 620b2e6

Please sign in to comment.