Skip to content

Commit 0845e66

Browse files
committed
naming
1 parent 1a702fe commit 0845e66

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

aggregator/pkg/aggregator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ func (agg *Aggregator) InitializeNewTask(batchIndex uint32, taskCreatedBlock uin
419419
}
420420
return err
421421
}
422-
return retry.Retry(initializeNewTask_func, retry.RpcRetryConfig())
422+
return retry.Retry(initializeNewTask_func, retry.EthCallRetryConfig())
423423
}
424424

425425
// Long-lived goroutine that periodically checks and removes old Tasks from stored Maps

aggregator/pkg/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,5 @@ func (agg *Aggregator) GetTaskIndexRetryable(batchIdentifierHash [32]byte) (uint
158158
return taskIndex, nil
159159
}
160160
}
161-
return retry.RetryWithData(getTaskIndex_func, retry.RpcRetryConfig())
161+
return retry.RetryWithData(getTaskIndex_func, retry.EthCallRetryConfig())
162162
}

0 commit comments

Comments
 (0)