@@ -32,7 +32,8 @@ func (w *AvsWriter) RespondToTaskV2Retryable(opts *bind.TransactOpts, batchMerkl
3232 }
3333 return tx , err
3434 }
35- return retry .RetryWithData (respondToTaskV2_func , retry .MinDelayChain , retry .RetryFactor , retry .NumRetries , retry .MaxIntervalChain , retry .MaxElapsedTime )
35+ //return retry.RetryWithData(respondToTaskV2_func, retry.MinDelayChain, retry.RetryFactor, retry.NumRetries, retry.MaxIntervalChain, retry.MaxElapsedTime)
36+ return retry .RetryWithData (respondToTaskV2_func , retry .DefaultRetryConfig ())
3637}
3738
3839/*
@@ -60,7 +61,7 @@ func (w *AvsWriter) BatchesStateRetryable(opts *bind.CallOpts, arg0 [32]byte) (s
6061 }
6162 return state , err
6263 }
63- return retry .RetryWithData (batchesState_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
64+ return retry .RetryWithData (batchesState_func , retry .DefaultRetryConfig () )
6465}
6566
6667/*
@@ -79,7 +80,7 @@ func (w *AvsWriter) BatcherBalancesRetryable(opts *bind.CallOpts, senderAddress
7980 }
8081 return batcherBalance , err
8182 }
82- return retry .RetryWithData (batcherBalances_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
83+ return retry .RetryWithData (batcherBalances_func , retry .DefaultRetryConfig () )
8384}
8485
8586/*
@@ -100,7 +101,7 @@ func (w *AvsWriter) BalanceAtRetryable(ctx context.Context, aggregatorAddress co
100101 }
101102 return aggregatorBalance , err
102103 }
103- return retry .RetryWithData (balanceAt_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
104+ return retry .RetryWithData (balanceAt_func , retry .DefaultRetryConfig () )
104105}
105106
106107// |---AVS_SUBSCRIBER---|
@@ -121,7 +122,7 @@ func (s *AvsSubscriber) BlockNumberRetryable(ctx context.Context) (uint64, error
121122 }
122123 return latestBlock , err
123124 }
124- return retry .RetryWithData (latestBlock_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
125+ return retry .RetryWithData (latestBlock_func , retry .DefaultRetryConfig () )
125126}
126127
127128/*
@@ -134,7 +135,7 @@ func (s *AvsSubscriber) FilterBatchV2Retryable(opts *bind.FilterOpts, batchMerkl
134135 filterNewBatchV2_func := func () (* servicemanager.ContractAlignedLayerServiceManagerNewBatchV2Iterator , error ) {
135136 return s .AvsContractBindings .ServiceManager .FilterNewBatchV2 (opts , batchMerkleRoot )
136137 }
137- return retry .RetryWithData (filterNewBatchV2_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
138+ return retry .RetryWithData (filterNewBatchV2_func , retry .DefaultRetryConfig () )
138139}
139140
140141/*
@@ -147,7 +148,7 @@ func (s *AvsSubscriber) FilterBatchV3Retryable(opts *bind.FilterOpts, batchMerkl
147148 filterNewBatchV2_func := func () (* servicemanager.ContractAlignedLayerServiceManagerNewBatchV3Iterator , error ) {
148149 return s .AvsContractBindings .ServiceManager .FilterNewBatchV3 (opts , batchMerkleRoot )
149150 }
150- return retry .RetryWithData (filterNewBatchV2_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
151+ return retry .RetryWithData (filterNewBatchV2_func , retry .DefaultRetryConfig () )
151152}
152153
153154/*
@@ -169,7 +170,7 @@ func (s *AvsSubscriber) BatchesStateRetryable(opts *bind.CallOpts, arg0 [32]byte
169170 return s .AvsContractBindings .ServiceManager .ContractAlignedLayerServiceManagerCaller .BatchesState (opts , arg0 )
170171 }
171172
172- return retry .RetryWithData (batchState_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
173+ return retry .RetryWithData (batchState_func , retry .DefaultRetryConfig () )
173174}
174175
175176/*
@@ -188,7 +189,7 @@ func (s *AvsSubscriber) SubscribeNewHeadRetryable(ctx context.Context, c chan<-
188189 }
189190 return sub , err
190191 }
191- return retry .RetryWithData (subscribeNewHead_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
192+ return retry .RetryWithData (subscribeNewHead_func , retry .DefaultRetryConfig () )
192193}
193194
194195/*
@@ -206,7 +207,7 @@ func SubscribeToNewTasksV2Retryable(
206207 subscribe_func := func () (event.Subscription , error ) {
207208 return serviceManager .WatchNewBatchV2 (opts , newTaskCreatedChan , batchMerkleRoot )
208209 }
209- return retry .RetryWithData (subscribe_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
210+ return retry .RetryWithData (subscribe_func , retry .DefaultRetryConfig () )
210211}
211212
212213/*
@@ -224,5 +225,5 @@ func SubscribeToNewTasksV3Retryable(
224225 subscribe_func := func () (event.Subscription , error ) {
225226 return serviceManager .WatchNewBatchV3 (opts , newTaskCreatedChan , batchMerkleRoot )
226227 }
227- return retry .RetryWithData (subscribe_func , retry .MinDelay , retry . RetryFactor , retry . NumRetries , retry . MaxInterval , retry . MaxElapsedTime )
228+ return retry .RetryWithData (subscribe_func , retry .DefaultRetryConfig () )
228229}
0 commit comments