You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
it("should mine `n` blocks if called `n` times without awaiting",async()=>{constprovider=awaitgetProvider(option);constinitialBlock=parseInt(awaitprovider.send("eth_blockNumber"));letproms=[];for(leti=0;i<5;i++){proms.push(provider.request({method: "evm_mine",params: []}));}awaitPromise.all(proms);constcurrentBlock=parseInt(awaitprovider.send("eth_blockNumber"));assert.strictEqual(currentBlock,initialBlock+5);});
This test fails with expected: 5, actual: 1
The text was updated successfully, but these errors were encountered:
This test fails with
expected: 5, actual: 1
The text was updated successfully, but these errors were encountered: