Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion test/suites/dev/moonbase/test-txpool/test-txpool-limits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ describeSuite({
}

await context.createBlock();
const maxTxnLen = (await getBlockWithRetry(context)).transactions.length;
const block = await getBlockWithRetry(context, { blockNumber: 1n });
const maxTxnLen = block.transactions.length;
log(`out ${maxTxnLen}`);
expect(maxTxnLen).toBeGreaterThan(2300);
},
Expand Down
Loading