| 224 | return m_wallet->SetAddressReceiveRequest(batch, dest, id, value); |
| 225 | } |
| 226 | bool displayAddress(const CTxDestination& dest) override |
| 227 | { |
| 228 | LOCK(m_wallet->cs_wallet); |
| 229 | return m_wallet->DisplayAddress(dest); |
| 230 | } |
| 231 | bool lockCoin(const COutPoint& output, const bool write_to_db) override |
| 232 | { |
| 233 | LOCK(m_wallet->cs_wallet); |
nothing calls this directly
no test coverage detected