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
Check if "Coin Control features" are enabled to display warning before broadcasting replacement transaction
Workaround to fix issue: bitcoin/bitcoin#20795
Co-authored-by: Jon Atack <[email protected]>
// Display warning in the "Confirm fee bump" window if the "Coin Control Features" option is enabled
519
+
if (getOptionsModel()->getCoinControlFeatures()) {
520
+
questionString.append("<br><br>");
521
+
questionString.append(tr("Warning: This may pay the additional fee by reducing change outputs or adding inputs, when necessary. It may add a new change output if one does not already exist. These changes may potentially leak privacy."));
0 commit comments