执行智能合约功能

时间:2018-05-21 13:25:31

标签: javascript node.js ethereum

我的命令有问题吗?

gotoDate

当我执行它时,我收到此错误:

  

未处理的拒绝错误:无效的JSON RPC响应:""

我很确定我确实成功执行了类似的命令,但现在我不知道为什么我不能这样做。

1 个答案:

答案 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)的参数类型。