Skip to content

Commit

Permalink
Keep insecureSkipVerify false by default in prod config
Browse files Browse the repository at this point in the history
  • Loading branch information
anodar committed May 16, 2024
1 parent b8503d8 commit 7b7159c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbnode/dataposter/data_poster.go
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ var DefaultDataPosterConfig = DataPosterConfig{
UseNoOpStorage: false,
LegacyStorageEncoding: false,
Dangerous: DangerousConfig{ClearDBStorage: false},
ExternalSigner: ExternalSignerCfg{Method: "eth_signTransaction", InsecureSkipVerify: true},
ExternalSigner: ExternalSignerCfg{Method: "eth_signTransaction", InsecureSkipVerify: false},
MaxFeeCapFormula: "((BacklogOfBatches * UrgencyGWei) ** 2) + ((ElapsedTime/ElapsedTimeBase) ** 2) * ElapsedTimeImportance + TargetPriceGWei",
ElapsedTimeBase: 10 * time.Minute,
ElapsedTimeImportance: 10,
Expand Down

0 comments on commit 7b7159c

Please sign in to comment.