Returns true if the result contains an error and the message is not empty
| 694 | |
| 695 | // Returns true if the result contains an error and the message is not empty |
| 696 | static bool HasErrorMsg(const util::Result<SelectionResult>& res) { return !util::ErrorString(res).empty(); } |
| 697 | |
| 698 | util::Result<SelectionResult> AttemptSelection(interfaces::Chain& chain, const CAmount& nTargetValue, OutputGroupTypeMap& groups, |
| 699 | const CoinSelectionParams& coin_selection_params, bool allow_mixed_output_types) |
no test coverage detected