| 33 | CInputCoin(const CWallet& wallet, const CWalletTx* wtx, unsigned int i); |
| 34 | |
| 35 | CInputCoin(const CWallet& wallet, const CWalletTx* wtx, unsigned int i, int input_bytes) : CInputCoin(wallet, wtx, i) |
| 36 | { |
| 37 | m_input_bytes = input_bytes; |
| 38 | } |
| 39 | |
| 40 | CInputCoin(const COutPoint& outpoint_in, const CTxOut& txout_in) |
| 41 | { |
nothing calls this directly
no test coverage detected