我正在使用testrpc和块菌来构建一个测试本地区块链。当我运行“松露测试”时,我得到了异常。
你能帮帮我吗。
谢谢,
ERROR:jsonrpc.manager:API Exception: {'message': 'This has not yet been implemented', 'args': ('This has not yet been implemented',), 'type': 'NotImplementedError'}
Traceback (most recent call last):
File "/home/sarath/.local/lib/python2.7/site-packages/jsonrpc/manager.py", line 108, in _get_responses
result = method(*request.args, **request.kwargs)
File "/home/sarath/.local/lib/python2.7/site-packages/testrpc/server.py", line 33, in inner
return rpc_fn(*args, **kwargs)
File "/home/sarath/.local/lib/python2.7/site-packages/testrpc/testrpc.py", line 158, in eth_newBlockFilter
raise NotImplementedError("This has not yet been implemented")
NotImplementedError: This has not yet been implemented发布于 2016-11-21 18:56:11
看起来你在使用。松露被设计用于与NodeJs testrpc一起工作。
你需要做的是:
pip uninstall eth-testrpc
npm install -g ethereumjs-testrpc
https://ethereum.stackexchange.com/questions/10186
复制相似问题