Private helper function that concatenates warning messages. */
| 2690 | |
| 2691 | /** Private helper function that concatenates warning messages. */ |
| 2692 | static void AppendWarning(bilingual_str& res, const bilingual_str& warn) |
| 2693 | { |
| 2694 | if (!res.empty()) res += Untranslated(", "); |
| 2695 | res += warn; |
| 2696 | } |
| 2697 | |
| 2698 | static void UpdateTipLog( |
| 2699 | const CCoinsViewCache& coins_tip, |
no test coverage detected