| 144 | bool isSpendable(const CTxDestination& dest) override { return IsMine(m_wallet, dest) & ISMINE_SPENDABLE; } |
| 145 | bool haveWatchOnly() override { return m_wallet.HaveWatchOnly(); }; |
| 146 | bool setAddressBook(const CTxDestination& dest, const std::string& name, const std::string& purpose) override |
| 147 | { |
| 148 | return m_wallet.SetAddressBook(dest, name, purpose); |
| 149 | } |
| 150 | bool delAddressBook(const CTxDestination& dest) override |
| 151 | { |
| 152 | return m_wallet.DelAddressBook(dest); |
no test coverage detected