Fix remote_identity assignment in PageNode class to use hash attribute

This commit is contained in:
2025-09-23 03:00:06 -05:00
parent 9f5ea23eb7
commit 62fde2617b

View File

@@ -142,7 +142,7 @@ class PageNode:
try: try:
env = os.environ.copy() env = os.environ.copy()
if remote_identity: if remote_identity:
env["remote_identity"] = RNS.hexrep(remote_identity, delimit=False) env["remote_identity"] = RNS.hexrep(remote_identity.hash, delimit=False)
if data and isinstance(data, bytes): if data and isinstance(data, bytes):
try: try:
data_str = data.decode('utf-8') data_str = data.decode('utf-8')