Skip to content

Commit 3cf36c4

Browse files
authored
Merge branch 'main' into yash/fix-module-deployment
2 parents b2d6ba4 + e9069c9 commit 3cf36c4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/thirdweb/src/rpc/rpc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export function getRpcClient(
146146
if (!response) {
147147
inflight.reject(
148148
new Error(
149-
`No response for index ${index} - all responses: ${stringify(responses)}`,
149+
`RPC Error from ${rpcUrl}:\nrequests: ${stringify(requests)}\nresponses: ${stringify(responses)}`,
150150
),
151151
);
152152
}

packages/thirdweb/test/globalSetup.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default async function globalSetup() {
2525
forkChainId: 1,
2626
forkBlockNumber: FORK_BLOCK_NUMBER,
2727
noMining: true,
28-
startTimeout: 20000,
28+
startTimeout: 60000,
2929
},
3030
});
3131

@@ -41,7 +41,7 @@ export default async function globalSetup() {
4141
forkBlockNumber: FORK_BLOCK_NUMBER,
4242
// ey, i'm mining here!
4343
noMining: false,
44-
startTimeout: 20000,
44+
startTimeout: 60000,
4545
},
4646
});
4747

@@ -56,7 +56,7 @@ export default async function globalSetup() {
5656
forkChainId: 10,
5757
forkBlockNumber: OPTIMISM_FORK_BLOCK_NUMBER,
5858
noMining: true,
59-
startTimeout: 20000,
59+
startTimeout: 60000,
6060
},
6161
});
6262

@@ -97,7 +97,7 @@ export default async function globalSetup() {
9797
forkChainId: 137,
9898
forkBlockNumber: POLYGON_FORK_BLOCK_NUMBER,
9999
noMining: false,
100-
startTimeout: 20000,
100+
startTimeout: 60000,
101101
},
102102
});
103103

@@ -112,7 +112,7 @@ export default async function globalSetup() {
112112
forkChainId: 8453,
113113
forkBlockNumber: BASE_FORK_BLOCK_NUMBER,
114114
noMining: true,
115-
startTimeout: 20000,
115+
startTimeout: 60000,
116116
},
117117
});
118118

0 commit comments

Comments
 (0)