| 246 | return m_wallet->IsLockedCoin(output.hash, output.n); |
| 247 | } |
| 248 | void listLockedCoins(std::vector<COutPoint>& outputs) override |
| 249 | { |
| 250 | LOCK(m_wallet->cs_wallet); |
| 251 | return m_wallet->ListLockedCoins(outputs); |
| 252 | } |
| 253 | CTransactionRef createTransaction(const std::vector<CRecipient>& recipients, |
| 254 | const CCoinControl& coin_control, |
| 255 | bool sign, |
no test coverage detected