mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-16 15:43:05 +01:00
Merge bitcoin/bitcoin#32472: doc: Fix typo
d847e17c96doc: Fix typo (Hennadii Stepanov) Pull request description: A translator on Transifex noticed: > This is the only label which has two dots: .. > Usually we see the elipsis (…) This PR addresses this issue. ACKs for top commit: janb84: good find, ACKd847e17c96Tree-SHA512: cbdc5f283fe30655a923c34813c97406bba85657554984c26acbfed585ce3a652bcb21348d7e0f6fd9c82ca04111c412ff62c7d4b046869d13785b713e69ab6d
This commit is contained in:
@@ -1844,7 +1844,7 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
|
|||||||
|
|
||||||
// Start indexes initial sync
|
// Start indexes initial sync
|
||||||
if (!StartIndexBackgroundSync(node)) {
|
if (!StartIndexBackgroundSync(node)) {
|
||||||
bilingual_str err_str = _("Failed to start indexes, shutting down..");
|
bilingual_str err_str = _("Failed to start indexes, shutting down…");
|
||||||
chainman.GetNotifications().fatalError(err_str);
|
chainman.GetNotifications().fatalError(err_str);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ class FeatureIndexPruneTest(BitcoinTestFramework):
|
|||||||
self.log.info("make sure we get an init error when starting the nodes again with the indices")
|
self.log.info("make sure we get an init error when starting the nodes again with the indices")
|
||||||
filter_msg = "Error: basic block filter index best block of the index goes beyond pruned data. Please disable the index or reindex (which will download the whole blockchain again)"
|
filter_msg = "Error: basic block filter index best block of the index goes beyond pruned data. Please disable the index or reindex (which will download the whole blockchain again)"
|
||||||
stats_msg = "Error: coinstatsindex best block of the index goes beyond pruned data. Please disable the index or reindex (which will download the whole blockchain again)"
|
stats_msg = "Error: coinstatsindex best block of the index goes beyond pruned data. Please disable the index or reindex (which will download the whole blockchain again)"
|
||||||
end_msg = f"{os.linesep}Error: A fatal internal error occurred, see debug.log for details: Failed to start indexes, shutting down.."
|
end_msg = f"{os.linesep}Error: A fatal internal error occurred, see debug.log for details: Failed to start indexes, shutting down…"
|
||||||
for i, msg in enumerate([filter_msg, stats_msg, filter_msg]):
|
for i, msg in enumerate([filter_msg, stats_msg, filter_msg]):
|
||||||
self.nodes[i].assert_start_raises_init_error(extra_args=self.extra_args[i], expected_msg=msg+end_msg)
|
self.nodes[i].assert_start_raises_init_error(extra_args=self.extra_args[i], expected_msg=msg+end_msg)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user