From 3509693c49c2384785ff1f0315589c854c109f7f Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Mon, 11 Dec 2023 15:42:36 -0400 Subject: [PATCH] Revert me: fix double-hex in debug output --- llarp/router_contact_remote.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llarp/router_contact_remote.cpp b/llarp/router_contact_remote.cpp index 1f402a4aa..598aeead6 100644 --- a/llarp/router_contact_remote.cpp +++ b/llarp/router_contact_remote.cpp @@ -67,7 +67,7 @@ namespace llarp } log::error(log::Cat("FIXME"), "ABOUT TO VERIFY THIS: {}, WITH SIG {}, SIGNED BY {}", - oxenc::to_hex(msg), oxenc::to_hex(sig), oxenc::to_hex(router_id().ToHex())); + oxenc::to_hex(msg), oxenc::to_hex(sig), router_id().ToHex()); if (not crypto::verify(router_id(), msg, sig)) throw std::runtime_error{"Failed to verify RemoteRC signature"};