Ethereum Error: Time Exceeding 900,000 ms

As a developer who works with Ethereum -based smart contracts in Hardhat, you can take place in a mistake “900,000 ms timeout” errors while performing unit tests for your lottery contract. This problem can occur if your test case is too slow within the specified schedule.

Understand error

The error message shows that a longer (900,000 ms) was expected due to the performer. However, this may not be related to the quality or efficiency of the test code. There are several factors that can cause this problem:

Solutions

To solve this problem, you can try the following solutions:

extra solution

Here's an updated example of a unit test that includes these optimization:

Javascript

Const {Ethterit} = request (“hardhat”);

Describe (“lottery agreement”, () => {

Lottoycontract;

before (asynchronized function () {

// Download the lottery agreement

Const [Account1, Account2] = Watte ethics.

(Wait Ethers.GetcontractFactory (“lottery”). Then ((LotteryContract) => {

LOTYCONTRACT.DEPLOY (Account.address);

LOTYCONTRACT.DEPLOY (Account2.address);

Restore LotteryContract.Deployed ();

});

});

it (“should choose the winner”, asynchronized function () {

// reset the lottery

Wait (wait LotteryContract.reset ()). Then (() => {

// Select the winner

Const results = Waiit (waiting for LotyContract.pickwinner ()). Then ((winner) => {

RETURN ETHERS.utils.Formatibytes (

“0x” + result,

[“Hex”]

)

});

Console.log (result);

});

});

});

`

If you follow these solutions and adjust your test case to optimize asynchronous functions, you should be able to solve the timeline problem and successfully conduct unit tests.

Additional tips

Ethereum: Error: Timeout of 900000ms exceeded. For async tests and hooks, ensure

Leave a Reply

Your email address will not be published. Required fields are marked *