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
fa5b892 rpc: Use untranslated error strings in loadtxoutset (MarcoFalke)
fa45865 refactor: Use named arguments to get path arg in loadtxoutset (MarcoFalke)
Pull request description:
Motivation:
* Some are not translated at all, anyway. See bitcoin/bitcoin#30267 (comment)
* For others translation is not yet needed, because they are not called by the GUI (yet)
* For others translations will never be needed, because they are RPC code. See bitcoin/bitcoin#30267 (comment)
Also, while touching this:
* Remove the trailing `\n`. See bitcoin/bitcoin#30267 (comment)
* Add back the path. See bitcoin/bitcoin#30267 (comment)
* Use named args to get the path.
ACKs for top commit:
fjahr:
re-ACK fa5b892
tdb3:
ACK fa5b892
ryanofsky:
Code review ACK fa5b892
Tree-SHA512: 46504dc5fd55a6274ef885dbe071aa9efb25bca247cd68cd86fb2ff066d70d295e0522e1fe42e63f1fdf7e4c89bd696220edaf06e33b804aba746492eafd852e
return util::Error{strprintf(_("assumeutxo block hash in snapshot metadata not recognized (hash: %s, height: %s). The following snapshot heights are available: %s."),
5669
+
return util::Error{strprintf(Untranslated("assumeutxo block hash in snapshot metadata not recognized (hash: %s, height: %s). The following snapshot heights are available: %s"),
return util::Error{strprintf(_("The base block header (%s) must appear in the headers chain. Make sure all headers are syncing, and call loadtxoutset again."),
5677
+
return util::Error{strprintf(Untranslated("The base block header (%s) must appear in the headers chain. Make sure all headers are syncing, and call loadtxoutset again"),
0 commit comments