Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

chore: modify eth block delay #367

Merged
merged 6 commits into from
Sep 26, 2022
Merged
Changes from 1 commit
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
Next Next commit
chore: modify eth block delay
  • Loading branch information
facundomedica committed Sep 26, 2022
commit 836915f84d51c37dcc74c263a7ec3253f6c1b596
4 changes: 2 additions & 2 deletions orchestrator/main_loops.go
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ func getEthBlockDelay(chainID uint64) uint64 {
// Mainline Ethereum, Ethereum classic, or the Ropsten, Kotti, Mordor testnets
// all POW Chains
case 1, 3, 6, 7:
return 13
return 96
facundomedica marked this conversation as resolved.
Show resolved Hide resolved

// Dev, our own Gravity Ethereum testnet, and Hardhat respectively
// all single signer chains with no chance of any reorgs
Expand All @@ -519,6 +519,6 @@ func getEthBlockDelay(chainID uint64) uint64 {

// assume the safe option (POW) where we don't know
default:
return 13
return 96
}
}