We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a217c59 commit 4f380b0Copy full SHA for 4f380b0
packages/eth-rpc-adapter/src/__tests__/e2e/endpoint.test.ts
@@ -265,6 +265,10 @@ describe('endpoint', () => {
265
describe('eth_getLogs', () => {
266
const ALL_BLOCK_RANGE_FILTER = { fromBlock: 'earliest' };
267
268
+ beforeAll(async () => {
269
+ await sleep(8000); // give subql a couple seconds to sync
270
+ });
271
+
272
describe.concurrent('when no filter', () => {
273
it('returns all logs from latest block', async () => {
274
const res = (await eth_getLogs([{}])).data.result;
0 commit comments