@@ -26,6 +26,7 @@ type Values struct {
2626 OpLookupLimit uint64
2727 Beneficiary string
2828 NativeBundlerCollectorTracer string
29+ NativeBundlerExecutorTracer string
2930 ReputationConstants * entities.ReputationConstants
3031
3132 // Searcher mode variables.
@@ -123,6 +124,7 @@ func GetValues() *Values {
123124 _ = viper .BindEnv ("erc4337_bundler_supported_entry_points" )
124125 _ = viper .BindEnv ("erc4337_bundler_beneficiary" )
125126 _ = viper .BindEnv ("erc4337_bundler_native_bundler_collector_tracer" )
127+ _ = viper .BindEnv ("erc4337_bundler_native_bundler_executor_tracer" )
126128 _ = viper .BindEnv ("erc4337_bundler_max_verification_gas" )
127129 _ = viper .BindEnv ("erc4337_bundler_max_batch_gas_limit" )
128130 _ = viper .BindEnv ("erc4337_bundler_max_op_ttl_seconds" )
@@ -184,6 +186,7 @@ func GetValues() *Values {
184186 supportedEntryPoints := envArrayToAddressSlice (viper .GetString ("erc4337_bundler_supported_entry_points" ))
185187 beneficiary := viper .GetString ("erc4337_bundler_beneficiary" )
186188 nativeBundlerCollectorTracer := viper .GetString ("erc4337_bundler_native_bundler_collector_tracer" )
189+ nativeBundlerExecutorTracer := viper .GetString ("erc4337_bundler_native_bundler_executor_tracer" )
187190 maxVerificationGas := big .NewInt (int64 (viper .GetInt ("erc4337_bundler_max_verification_gas" )))
188191 maxBatchGasLimit := big .NewInt (int64 (viper .GetInt ("erc4337_bundler_max_batch_gas_limit" )))
189192 maxOpTTL := time .Second * viper .GetDuration ("erc4337_bundler_max_op_ttl_seconds" )
@@ -208,6 +211,7 @@ func GetValues() *Values {
208211 SupportedEntryPoints : supportedEntryPoints ,
209212 Beneficiary : beneficiary ,
210213 NativeBundlerCollectorTracer : nativeBundlerCollectorTracer ,
214+ NativeBundlerExecutorTracer : nativeBundlerExecutorTracer ,
211215 MaxVerificationGas : maxVerificationGas ,
212216 MaxBatchGasLimit : maxBatchGasLimit ,
213217 MaxOpTTL : maxOpTTL ,
0 commit comments