我的命令有问题吗?
gotoDate
当我执行它时,我收到此错误:
未处理的拒绝错误:无效的JSON RPC响应:""
我很确定我确实成功执行了类似的命令,但现在我不知道为什么我不能这样做。
答案 0 :(得分:0)
gasLimit
实际上由gas
表示为根据文档的气体限制器:http://web3js.readthedocs.io/en/1.0/web3-eth-contract.html#methods-mymethod-send
contract.methods.thu().send(
{ from: senderAddress,
gasPrice: web3.utils.toHex(GAS_PRICE),
gas: web3.utils.toHex(GAS_LIMIT)
}
)
此外,最好使用文档中gasPrice
(String)
和gas
(Number)
的参数类型。