fix(tests): rename make_Telemetry to telemetry::makeTelemetry in Peer.h

The project-wide rename check changed the factory function name but
missed this call site in the consensus simulation test framework.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Pratik Mankawde
2026-06-01 16:45:38 +01:00
parent c5ae16cdd9
commit 2ac93c504e

View File

@@ -645,7 +645,7 @@ struct Peer
telemetry::Telemetry&
getTelemetry()
{
static auto tel = make_Telemetry(
static auto tel = telemetry::makeTelemetry(
telemetry::Telemetry::Setup{}, beast::Journal{beast::Journal::getNullSink()});
return *tel;
}