fix: prefix
This commit is contained in:
parent
a3048f517b
commit
bee583d448
|
@ -10,7 +10,7 @@ proc adminPeers*(): RpcResponse[JsonNode] {.raises: [Exception].} =
|
||||||
|
|
||||||
proc wakuV2Peers*(): RpcResponse[JsonNode] {.raises: [Exception].} =
|
proc wakuV2Peers*(): RpcResponse[JsonNode] {.raises: [Exception].} =
|
||||||
let payload = %* []
|
let payload = %* []
|
||||||
result = callPrivateRPC("peers", payload)
|
result = callPrivateRPC("peers".prefix, payload)
|
||||||
|
|
||||||
proc sendRPCMessageRaw*(inputJSON: string): string {.raises: [Exception].} =
|
proc sendRPCMessageRaw*(inputJSON: string): string {.raises: [Exception].} =
|
||||||
result = callPrivateRPCRaw(inputJSON)
|
result = callPrivateRPCRaw(inputJSON)
|
||||||
|
|
Loading…
Reference in New Issue