(password?: string)
| 663 | } |
| 664 | |
| 665 | async getXPrivKey(password?: string): Promise<string> { |
| 666 | password = password || await getPassword(); |
| 667 | return this.#walletData.key.get(password).xPrivKey; |
| 668 | } |
| 669 | |
| 670 | getXPubKey() { |
| 671 | return this.client.credentials.clientDerivedPublicKey || this.client.credentials.xPubKey; |
nothing calls this directly
no test coverage detected