We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92eed08 commit eafe301Copy full SHA for eafe301
1 file changed
config/config.go
@@ -743,6 +743,9 @@ func setDefaults() {
743
// to the upstream SetDefaults so any new fields are picked up automatically.
744
var ct chaintracksconfig.Config
745
ct.SetDefaults(viper.GetViper(), "chaintracks")
746
+ // go-chaintracks SetDefaults omits chaintracks.url, so viper.AutomaticEnv()
747
+ // can't see ARCADE_CHAINTRACKS_URL — register the key explicitly here.
748
+ viper.SetDefault("chaintracks.url", "")
749
viper.SetDefault("bump_builder.grace_window_ms", 30000)
750
// 1 GiB — DataHub /block/<hash> responses contain block metadata
751
// (header + subtree hashes + coinbase tx + coinbase BUMP). 1 GiB is
0 commit comments