ADD: show fingerprint and derivation path for HD wallets

This commit is contained in:
Ivan Vershigora 2021-03-24 17:06:45 +03:00
parent 936ed1b985
commit e357f90186

View file

@ -336,9 +336,9 @@ export class AbstractWallet {
}
/**
* @returns {string|null} Root derivation path for wallet if any
* @returns {string} Root derivation path for wallet if any
*/
getDerivationPath() {
return this._derivationPath || null;
return this._derivationPath ?? '';
}
}