| 277 | } |
| 278 | bool transactionCanBeAbandoned(const uint256& txid) override { return m_wallet->TransactionCanBeAbandoned(txid); } |
| 279 | bool abandonTransaction(const uint256& txid) override |
| 280 | { |
| 281 | LOCK(m_wallet->cs_wallet); |
| 282 | return m_wallet->AbandonTransaction(txid); |
| 283 | } |
| 284 | bool transactionCanBeBumped(const uint256& txid) override |
| 285 | { |
| 286 | return feebumper::TransactionCanBeBumped(*m_wallet.get(), txid); |
no test coverage detected