fix libwaku's returned enr string (#3097)

This commit is contained in:
gabrielmer 2024-10-08 17:22:49 +03:00 committed by GitHub
parent a6ed80a55d
commit 4aabd64b40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ proc process*(
of RETRIEVE_LISTENING_ADDRESSES: of RETRIEVE_LISTENING_ADDRESSES:
return ok($(%*waku.node.getMultiaddresses())) return ok($(%*waku.node.getMultiaddresses()))
of RETRIEVE_MY_ENR: of RETRIEVE_MY_ENR:
return ok($(%*waku.node.enr.toURI())) return ok(waku.node.enr.toURI())
error "unsupported operation in DebugNodeRequest" error "unsupported operation in DebugNodeRequest"
return err("unsupported operation in DebugNodeRequest") return err("unsupported operation in DebugNodeRequest")