我得到
没有回调参数的MetaMask Web3对象不支持eth_gasPrice之类的同步方法。
即使我提供了该回调参数:
web3.eth.gasPrice((err, gasPrice) => {
if (err) {
console.log(err)
} else {
store.dispatch('pollWeb3', {gasPrice: gasPrice})
}
})
根据the doc,这应该可以正常工作。我误会了吗?
答案 0 :(得分:0)
我提交问题的那一刻...
如果与回调一起使用,则方法名称必须为web3.eth。 getGasPrice (...