diff --git a/internal/input/assets_history_archive.go b/internal/input/assets_history_archive.go index a0c00561..4fc04fa5 100644 --- a/internal/input/assets_history_archive.go +++ b/internal/input/assets_history_archive.go @@ -9,7 +9,7 @@ import ( "github.com/stellar/go/xdr" ) -// GetPaymentOperations returns a slice of payment operations that can include new assets from the ledgers in the provided range (inclusive on both ends) +// GetPaymentOperationsHistoryArchive returns a slice of payment operations that can include new assets from the ledgers in the provided range (inclusive on both ends) func GetPaymentOperationsHistoryArchive(start, end uint32, limit int64, env utils.EnvironmentDetails, useCaptivere bool) ([]AssetTransformInput, error) { backend, err := utils.CreateBackend(start, end, env.ArchiveURLs) if err != nil { diff --git a/internal/input/ledgers_history_archive.go b/internal/input/ledgers_history_archive.go index 86341450..2de49f1c 100644 --- a/internal/input/ledgers_history_archive.go +++ b/internal/input/ledgers_history_archive.go @@ -6,7 +6,7 @@ import ( "github.com/stellar/stellar-etl/v2/internal/utils" ) -// GetLedgers returns a slice of ledger close metas for the ledgers in the provided range (inclusive on both ends) +// GetLedgersHistoryArchive returns a slice of ledger close metas for the ledgers in the provided range (inclusive on both ends) func GetLedgersHistoryArchive(start, end uint32, limit int64, env utils.EnvironmentDetails, useCaptiveCore bool) ([]utils.HistoryArchiveLedgerAndLCM, error) { backend, err := utils.CreateBackend(start, end, env.ArchiveURLs) if err != nil {