From 5fbebeb8f43c5bcffba8c92cf72d488d58772a2c Mon Sep 17 00:00:00 2001 From: evoskuil Date: Mon, 12 Jan 2026 14:51:09 -0500 Subject: [PATCH] Add turbo value to the /configuration query response. --- src/protocols/protocol_explore.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/protocols/protocol_explore.cpp b/src/protocols/protocol_explore.cpp index 2e0a5a14..2345f55e 100644 --- a/src/protocols/protocol_explore.cpp +++ b/src/protocols/protocol_explore.cpp @@ -251,6 +251,7 @@ bool protocol_explore::handle_get_configuration(const code& ec, boost::json::object object{}; object["address"] = archive().address_enabled(); object["filter"] = archive().filter_enabled(); + object["turbo"] = database_settings().turbo; object["witness"] = network_settings().witness_node(); object["retarget"] = system_settings().forks.retarget; object["difficult"] = system_settings().forks.difficult;