Skip to content

Commit 05765b8

Browse files
committed
Merge bitcoin/bitcoin#32472: doc: Fix typo
d847e17 doc: 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, ACK bitcoin/bitcoin@d847e17 Tree-SHA512: cbdc5f283fe30655a923c34813c97406bba85657554984c26acbfed585ce3a652bcb21348d7e0f6fd9c82ca04111c412ff62c7d4b046869d13785b713e69ab6d
2 parents 3edf400 + d847e17 commit 05765b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1844,7 +1844,7 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
18441844

18451845
// Start indexes initial sync
18461846
if (!StartIndexBackgroundSync(node)) {
1847-
bilingual_str err_str = _("Failed to start indexes, shutting down..");
1847+
bilingual_str err_str = _("Failed to start indexes, shutting down");
18481848
chainman.GetNotifications().fatalError(err_str);
18491849
return;
18501850
}

test/functional/feature_index_prune.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def run_test(self):
132132
self.log.info("make sure we get an init error when starting the nodes again with the indices")
133133
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)"
134134
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)"
135-
end_msg = f"{os.linesep}Error: A fatal internal error occurred, see debug.log for details: Failed to start indexes, shutting down.."
135+
end_msg = f"{os.linesep}Error: A fatal internal error occurred, see debug.log for details: Failed to start indexes, shutting down"
136136
for i, msg in enumerate([filter_msg, stats_msg, filter_msg]):
137137
self.nodes[i].assert_start_raises_init_error(extra_args=self.extra_args[i], expected_msg=msg+end_msg)
138138

0 commit comments

Comments
 (0)