| 482 | bool canGetAddresses() override { return m_wallet->CanGetAddresses(); } |
| 483 | bool hasExternalSigner() override { return m_wallet->IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER); } |
| 484 | bool privateKeysDisabled() override { return m_wallet->IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS); } |
| 485 | bool taprootEnabled() override { |
| 486 | auto spk_man = m_wallet->GetScriptPubKeyMan(OutputType::BECH32M, /*internal=*/false); |
| 487 | return spk_man != nullptr; |
no test coverage detected