respect current settings
| 1478 | |
| 1479 | // respect current settings |
| 1480 | int CWallet::GetInputDarkSendRounds(CTxIn in) const |
| 1481 | { |
| 1482 | LOCK(cs_wallet); |
| 1483 | int realDarkSendRounds = GetRealInputDarkSendRounds(in, 0); |
| 1484 | return realDarkSendRounds > nDarksendRounds ? nDarksendRounds : realDarkSendRounds; |
| 1485 | } |
| 1486 | |
| 1487 | bool CWallet::IsDenominated(const CTxIn& txin) const |
| 1488 | { |
no outgoing calls
no test coverage detected