Skip to content

Commit d847e17

Browse files
committed
doc: Fix typo
An ellipsis (…) is typically used in such cases.
1 parent 3edf400 commit d847e17

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)