| 255 | } |
| 256 | bool signBumpTransaction(CMutableTransaction& mtx) override { return feebumper::SignTransaction(&m_wallet, mtx); } |
| 257 | bool commitBumpTransaction(const uint256& txid, |
| 258 | CMutableTransaction&& mtx, |
| 259 | std::vector<std::string>& errors, |
| 260 | uint256& bumped_txid) override |
| 261 | { |
| 262 | return feebumper::CommitTransaction(&m_wallet, txid, std::move(mtx), errors, bumped_txid) == |
| 263 | feebumper::Result::OK; |
| 264 | } |
| 265 | CTransactionRef getTx(const uint256& txid) override |
| 266 | { |
| 267 | LOCK2(::cs_main, m_wallet.cs_wallet); |
no test coverage detected