Skip to content

Commit

Permalink
fix libwaku's returned enr string (#3097)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmer authored Oct 8, 2024
1 parent a6ed80a commit 4aabd64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ proc process*(
of RETRIEVE_LISTENING_ADDRESSES:
return ok($(%*waku.node.getMultiaddresses()))
of RETRIEVE_MY_ENR:
return ok($(%*waku.node.enr.toURI()))
return ok(waku.node.enr.toURI())

error "unsupported operation in DebugNodeRequest"
return err("unsupported operation in DebugNodeRequest")

0 comments on commit 4aabd64

Please sign in to comment.