1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

Revert me: fix double-hex in debug output

This commit is contained in:
Jason Rhinelander 2023-12-11 15:42:36 -04:00
parent febcd44ea1
commit 3509693c49
No known key found for this signature in database
GPG key ID: C4992CE7A88D4262

View file

@ -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"};