| 21 | } |
| 22 | |
| 23 | bool AllInputsMine(const CWallet& wallet, const CTransaction& tx) |
| 24 | { |
| 25 | LOCK(wallet.cs_wallet); |
| 26 | for (const CTxIn& txin : tx.vin) { |
| 27 | if (!InputIsMine(wallet, txin)) return false; |
| 28 | } |
| 29 | return true; |
| 30 | } |
| 31 | |
| 32 | CAmount OutputGetCredit(const CWallet& wallet, const CTxOut& txout) |
| 33 | { |
no test coverage detected