Skip to content

Commit

Permalink
Merge pull request ethereum#222 from OffchainLabs/missing_bloom_confirm
Browse files Browse the repository at this point in the history
Fix missing bloom-confirms config
  • Loading branch information
PlasmaPower authored Jun 6, 2023
2 parents 9aced57 + d79f164 commit a401dba
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions arbitrum/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ func ConfigAddOptions(prefix string, f *flag.FlagSet) {
f.Float64(prefix+".tx-fee-cap", DefaultConfig.RPCTxFeeCap, "cap on transaction fee (in ether) that can be sent via the RPC APIs (0 = no cap)")
f.Duration(prefix+".evm-timeout", DefaultConfig.RPCEVMTimeout, "timeout used for eth_call (0=infinite)")
f.Uint64(prefix+".bloom-bits-blocks", DefaultConfig.BloomBitsBlocks, "number of blocks a single bloom bit section vector holds")
f.Uint64(prefix+".bloom-confirms", DefaultConfig.BloomConfirms, "number of confirmation blocks before a bloom section is considered final")
f.Uint64(prefix+".feehistory-max-block-count", DefaultConfig.FeeHistoryMaxBlockCount, "max number of blocks a fee history request may cover")
f.String(prefix+".classic-redirect", DefaultConfig.ClassicRedirect, "url to redirect classic requests, use \"error:[CODE:]MESSAGE\" to return specified error instead of redirecting")
f.Duration(prefix+".classic-redirect-timeout", DefaultConfig.ClassicRedirectTimeout, "timeout for forwarded classic requests, where 0 = no timeout")
Expand Down

0 comments on commit a401dba

Please sign in to comment.