| 1513 | |
| 1514 | |
| 1515 | bool CWallet::IsDenominatedAmount(int64_t nInputAmount) const |
| 1516 | { |
| 1517 | for (int64_t d : darkSendDenominations) |
| 1518 | if (nInputAmount == d) |
| 1519 | return true; |
| 1520 | return false; |
| 1521 | } |
| 1522 | |
| 1523 | bool CWallet::IsChange(const CTxOut& txout) const |
| 1524 | { |
no outgoing calls
no test coverage detected