From 34a89b6bb9bafde19e72ef74dfcad6c09eab2491 Mon Sep 17 00:00:00 2001 From: coffeepots Date: Wed, 9 May 2018 16:17:33 +0100 Subject: [PATCH] Update comment to be clearer --- tests/testserverclient.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testserverclient.nim b/tests/testserverclient.nim index e23ccb4..0b68cee 100644 --- a/tests/testserverclient.nim +++ b/tests/testserverclient.nim @@ -2,8 +2,8 @@ import ../ rpcserver, ../ rpcclient, unittest, asyncdispatch, json, tables #[ TODO: Importing client before server causes the error: - Error: undeclared identifier: 'result' for the custom procedure. - This is because the rpc procs created by clientdispatch clash with ethprocs. + Error: undeclared identifier: 'result' for the `myProc` RPC. + This is because the RPC procs created by clientdispatch clash with ethprocs. Currently, easiest solution is to import rpcserver (and therefore generate ethprocs) before rpcclient. ]#