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 bitcoin#31287: refactor: Avoid std::string format strings
fa1177e refactor: Avoid std::string format strings (MarcoFalke)
Pull request description:
This changes some unchecked `std::string` format strings to use string literals, which are `consteval` checked at compile-time.
Split out, because it is used in several pull requests.
ACKs for top commit:
l0rinc:
ACK fa1177e
tdb3:
code review and light test ACK fa1177e
rkrux:
tACK fa1177e
ryanofsky:
Code review ACK fa1177e
Tree-SHA512: 7cc70a49b07dadc386336687b463043e79e94a46d18db0184c9813218536e87e954a1afeb8739d5d8706e7b2f355d3f7984048c7de2725851b463985f1c5369f
fast_rescan_filter ? "fast variant using block filters" : "slow variant inspecting all blocks");
1898
1898
1899
1899
fAbortRescan = false;
1900
-
ShowProgress(strprintf("%s " +_("Rescanning…").translated, GetDisplayName()), 0); // show rescan progress in GUI as dialog or on splashscreen, if rescan required on startup (e.g. due to corruption)
1900
+
ShowProgress(strprintf("%s %s", GetDisplayName(),_("Rescanning…").translated), 0); // show rescan progress in GUI as dialog or on splashscreen, if rescan required on startup (e.g. due to corruption)
0 commit comments