@@ -14,7 +14,6 @@ func NewReputationConstantsFromEnv() *entities.ReputationConstants {
14
14
viper .SetDefault ("erc4337_bundler_throttled_entity_live_blocks" , 10 )
15
15
viper .SetDefault ("erc4337_bundler_throttled_entity_bundle_count" , 4 )
16
16
viper .SetDefault ("erc4337_bundler_min_inclusion_rate_denominator" , 10 )
17
- viper .SetDefault ("erc4337_bundler_inclusion_rate_factor" , 10 )
18
17
viper .SetDefault ("erc4337_bundler_throttling_slack" , 10 )
19
18
viper .SetDefault ("erc4337_bundler_ban_slack" , 50 )
20
19
@@ -26,7 +25,6 @@ func NewReputationConstantsFromEnv() *entities.ReputationConstants {
26
25
_ = viper .BindEnv ("erc4337_bundler_throttled_entity_live_blocks" )
27
26
_ = viper .BindEnv ("erc4337_bundler_throttled_entity_bundle_count" )
28
27
_ = viper .BindEnv ("erc4337_bundler_min_inclusion_rate_denominator" )
29
- _ = viper .BindEnv ("erc4337_bundler_inclusion_rate_factor" )
30
28
_ = viper .BindEnv ("erc4337_bundler_throttling_slack" )
31
29
_ = viper .BindEnv ("erc4337_bundler_ban_slack" )
32
30
@@ -39,7 +37,6 @@ func NewReputationConstantsFromEnv() *entities.ReputationConstants {
39
37
ThrottledEntityLiveBlocks : viper .GetInt ("erc4337_bundler_throttled_entity_live_blocks" ),
40
38
ThrottledEntityBundleCount : viper .GetInt ("erc4337_bundler_throttled_entity_bundle_count" ),
41
39
MinInclusionRateDenominator : viper .GetInt ("erc4337_bundler_min_inclusion_rate_denominator" ),
42
- InclusionRateFactor : viper .GetInt ("erc4337_bundler_inclusion_rate_factor" ),
43
40
ThrottlingSlack : viper .GetInt ("erc4337_bundler_throttling_slack" ),
44
41
BanSlack : viper .GetInt ("erc4337_bundler_ban_slack" ),
45
42
}
0 commit comments