Convert public key to uppercase when retrieving from local identity

This commit is contained in:
Lloyd
2026-01-09 17:24:10 +00:00
parent 7bd5b6f13d
commit 4f22cb1308
@@ -204,7 +204,7 @@ class MeshCoreToMqttJwtPusher:
):
# Store local identity and get public key
self.local_identity = local_identity
public_key = local_identity.get_public_key().hex()
public_key = local_identity.get_public_key().hex().upper()
# Extract values from config
from ..config import get_node_info