pad nodeids

This commit is contained in:
Zach White
2025-06-14 20:23:46 -07:00
parent b1106d8558
commit 1888a70e35
+1 -1
View File
@@ -164,7 +164,7 @@ def node_id_to_hex(node_id):
if node_id == 4294967295:
return "^all"
else:
return f"!{hex(node_id)[2:]}"
return f"!{hex(node_id)[2:].zfill(8)}"
def format_timestamp(timestamp):