Skip to content

Commit

Permalink
Fixed an error related to the runtime config
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-o committed Oct 14, 2024
1 parent eb3818c commit f3d5fd8
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions config/runtime.exs
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,13 @@ if dsn do
end

# Peerbook penalization

penalizing_score =
case network do
"sepolia" -> 20
"mainnet" -> 50
_ -> 30
end

config :lambda_ethereum_consensus, LambdaEthereumConsensus.P2P.Peerbook,
penalizing_score:
case network do
"sepolia" -> 20
"mainnet" -> 50
_ -> 30
end
penalizing_score: penalizing_score

0 comments on commit f3d5fd8

Please sign in to comment.