赞
踩
区块链使用web3.js与geth以太坊节点进行通讯时,有时候节点会响应Returned error: invalid argument 0: json: cannot unmarshal non-string into Go value of type common.H
出现该问题的情况很多,但是从错误信息来看是在调用远端接口时参数不正确导致(如:参数类型不正确)。
下面只举例说明参数类型不正确场景:(其他情况需要自行调试,资料比较少,需要慢慢领悟)
1. 启动geth控制台,并将日志输出到文件 2>~/geth.log
geth console --kiln --rpc.gascap 0 --rpc.txfeecap 0 --http -http.api web3,eth,net,personal,debug --http.corsdomain '*' --ws --ws.api web3,net,eth,personal,debug --allow-insecure-unlock --vmdebug 2>~/geth.log
2. 控制台模拟错误,getTransaction、getTransactionReceipt方法参数为16进制事务hash,所以传入的123类型不正确最终体现为:invalid argument 0:...
3. 实际上使用js、ts编写 服务时,可能为异步形式调用方法,不进行同步await时,可能不知道调用哪个方法导致的这种错误(该错误响应并没有指出调用什么方法导致的
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。