diff --git a/src/utils/account.ts b/src/utils/account.ts index d88511c06c4..c083b07b27c 100644 --- a/src/utils/account.ts +++ b/src/utils/account.ts @@ -36,12 +36,12 @@ export enum MnemonicLanguages { portuguese, } -export type RandomNumberGenerator = ( +type RandomNumberGenerator = ( size: number, callback: (err: Error | null, buf: Buffer) => void ) => void -export interface Bip39 { +interface Bip39 { mnemonicToSeed: (mnemonic: string, password?: string) => Promise generateMnemonic: ( strength?: number,