为了测试一些边缘情况,需要在一个区块中挖掘多个事务。根据https://github.com/nomiclabs/hardhat/issues/1214 on hardhat@2.1.0 可以停止挖矿,对吧?
我应该使用什么命令来做到这一点?
我试过 miner_stop();
我在用:
npx hardhat --version
2.2.1
得到错误:
ReferenceError: miner_stop is not defined
也用过
rpc({ method: "miner_stop" });
它也没有工作。
谢谢!