You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge #18927: Pass bilingual_str argument to AbortNode()
5527be0 refactor: Add AbortError alias (Hennadii Stepanov)
d924f2a Drop MSG_NOPREFIX flag (Hennadii Stepanov)
083daf7 Pass bilingual_str argument to AbortNode() (Hennadii Stepanov)
d1cca12 refactor: Use bilingual_str::empty() (Hennadii Stepanov)
Pull request description:
This PR is a [followup](bitcoin/bitcoin#16218 (comment)) of #16224, and it adds `bilingual_str` type argument support to the `AbortNode()` functions.
ACKs for top commit:
MarcoFalke:
ACK 5527be0 👟
Tree-SHA512: bf8b15b14912b1f672e6e588fffa1e6eb6f00b4b23d15d0ced7f18fbdf76919244427feb7217007fe29617049308e13def893a03a87358db819cca9692f59905
uiInterface.ThreadSafeMessageBox(_("Error: A fatal internal error occurred, see debug.log for details"), "", CClientUIInterface::MSG_ERROR | CClientUIInterface::MSG_NOPREFIX);
1672
+
if (user_message.empty()) {
1673
+
user_message = _("A fatal internal error occurred, see debug.log for details");
0 commit comments