| 2453 | } |
| 2454 | |
| 2455 | struct CompareByPriority { |
| 2456 | bool operator()(const COutput& t1, |
| 2457 | const COutput& t2) const |
| 2458 | { |
| 2459 | return t1.Priority() > t2.Priority(); |
| 2460 | } |
| 2461 | }; |
| 2462 | |
| 2463 | bool CWallet::SelectCoinsByDenominations(int nDenom, int64_t nValueMin, int64_t nValueMax, std::vector<CTxIn>& vCoinsRet, std::vector<COutput>& vCoinsRet2, int64_t& nValueRet, int nDarksendRoundsMin, int nDarksendRoundsMax) |
| 2464 | { |