From d9678bab2577329d667e1756fd070b20e94ca0aa Mon Sep 17 00:00:00 2001 From: David Krause Date: Sat, 11 Aug 2018 14:07:44 +0200 Subject: [PATCH] fix example in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e373c9f..825edc6 100644 --- a/README.md +++ b/README.md @@ -298,7 +298,7 @@ The `call` procedure takes care of the basic format of the JSON to send to the s However you still need to provide `params` as a `JsonNode`, which must exactly match the parameters defined in the equivalent `rpc` definition. ```nim -import json_rpc/[rpcclient, rpcserver], asyncdispatch, json +import json_rpc/[rpcclient, rpcserver], asyncdispatch2, json var server = newRpcSocketServer("localhost", Port(8545))