fix: Send password to sign

This commit is contained in:
Nathan Woodburn 2025-03-07 14:20:40 +11:00
parent 64ee3a26e4
commit 9c3e08fa32
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -189,7 +189,7 @@ def hnslinks(params, authentication):
return {"status": "Error getting wallet address"}
# Sign message hns-links
response = account.signMessage(wallet,domain,"hns-links")
response = account.signMessage(authentication,domain,"hns-links")
if "error" in response:
return {"status": "Error signing message"}
return {"status": response}