测试gasprice

时间:2018-06-14 14:44:09

标签: ethereum solidity truffle

我正在玩能够设置交易可以广播的最大gasPrice被接受。检查以下内容:

require(tx.gasprice <= gasPriceLimit * 1000000000);

然后从我的测试脚本中调用以下内容:

await contract.mint({gasprice: txnGasPrice});

预期的失败没有发生,因为ganache有默认的tx.gasprice它使用..我怎样才能确保使用我的测试gasprice呢?

由于 甲

1 个答案:

答案 0 :(得分:0)

与此同时,我通过在truffle.js中设置gasprice,然后使用gasPriceLimit来解决这个问题。