当前位置:   article > 正文

Returned error: invalid argument 0: json: cannot unmarshal non-string into Go value of type common.H

invalid argument 0: json: cannot unmarshal non-string into go value of type

区块链使用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时,可能不知道调用哪个方法导致的这种错误(该错误响应并没有指出调用什么方法导致的

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/546729
推荐阅读
相关标签