diff --git a/src/utils/config/forwarder.go b/src/utils/config/forwarder.go index efe6e5f9..05116382 100644 --- a/src/utils/config/forwarder.go +++ b/src/utils/config/forwarder.go @@ -5,8 +5,12 @@ import "github.com/spf13/viper" type Forwarder struct { // How many L1 interactions are fetched from the DB at once FetcherBatchSize int + + // Interactions are saved to this Redis channel + PublisherRedisChannelName string } func setForwarderDefaults() { viper.SetDefault("Forwarder.FetcherBatchSize", "100") + viper.SetDefault("Forwarder.PublisherRedisChannelName", "interactions") }