Skip to content

Commit

Permalink
fix: secret fix for scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaShWoof committed Dec 27, 2024
1 parent c792011 commit 9d67b33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/run-scenarios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
LINEASCAN_KEY: ${{ secrets.LINEASCAN_KEY }}
OPTIMISMSCAN_KEY: ${{ secrets.OPTIMISMSCAN_KEY }}
MANTLESCAN_KEY: ${{ secrets.MANTLESCAN_KEY }}
SCROLLSCAN_KEY: ${{ secrets.SCROLLSCAN_KEY }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion plugins/scenario/Runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export class Runner<T, U, R> {
}


async function retry(fn: () => Promise<any>, retries: number = 10, timeLimit?: number, wait: number = 100) {
async function retry(fn: () => Promise<any>, retries: number = 10, timeLimit?: number, wait: number = 250) {
try {
return await asyncCallWithTimeout(fn(), timeLimit);
} catch (e) {
Expand Down

0 comments on commit 9d67b33

Please sign in to comment.