| 277 | return chainman().ActiveChainstate().CoinsTip().GetCoin(output, coin); |
| 278 | } |
| 279 | TransactionError broadcastTransaction(CTransactionRef tx, CAmount max_tx_fee, std::string& err_string) override |
| 280 | { |
| 281 | return BroadcastTransaction(*m_context, std::move(tx), err_string, max_tx_fee, /*relay=*/ true, /*wait_callback=*/ false); |
| 282 | } |
| 283 | WalletLoader& walletLoader() override |
| 284 | { |
| 285 | return *Assert(m_context->wallet_loader); |
nothing calls this directly
no test coverage detected