Skip to content

Proposer to propose multiple L2 blocks at once #553

New issue

Have a question about this project? Sign up for a free account to open an issue and contact its maintainers and the community.

By clicking “Sign up for ”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on ? Sign in to your account

Merged
merged 16 commits into from
Mar 14, 2022
Merged
PrevPrevious commit
Next Next commit
fix: increment timeout for test-gas
  • Loading branch information
@daveroga
daveroga committedMar 10, 2022
commit 9729f29dc65b6477cd438667ea19424038e6f712
2 changes: 1 addition & 1 deletion test/utils.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -209,7 +209,7 @@ export class Web3Client {

async waitForEvent(eventLogs, expectedEvents, count = 1) {
const length = count !== 1 ? count : expectedEvents.length;
let timeout = 200;
let timeout = 1000;
while (eventLogs.length < length) {
await new Promise(resolve => setTimeout(resolve, 3000));
timeout--;
Expand Down