neo-python-rpc icon indicating copy to clipboard operation
neo-python-rpc copied to clipboard

'error': {'code': -32700, 'message': 'Parse error'}

Open TitusWongCN opened this issue 5 years ago • 0 comments

When I run codes below,

from neorpc.Client import RPCClient

client = RPCClient()
blockchain_height = client.get_height()
print(blockchain_height)

it returns this,

{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32700, 'message': 'Parse error'}}

how can I get the correct value?

TitusWongCN avatar Oct 25 '19 23:10 TitusWongCN