diff --git a/services/horizon/internal/ingest/main.go b/services/horizon/internal/ingest/main.go index a927ebaea6..dbc586e8ff 100644 --- a/services/horizon/internal/ingest/main.go +++ b/services/horizon/internal/ingest/main.go @@ -58,8 +58,7 @@ const ( // claimable balances for claimant queries. // - 17: Add contract_id column to exp_asset_stats table which is derived by ingesting // contract data ledger entries. - // - 18: Remove unused indexes (https://github.com/stellar/go/issues/5061) - CurrentVersion = 18 + CurrentVersion = 17 // MaxDBConnections is the size of the postgres connection pool dedicated to Horizon ingestion: // * Ledger ingestion, diff --git a/services/horizon/internal/ingest/verify.go b/services/horizon/internal/ingest/verify.go index 03ae3776b9..ddacbb43c0 100644 --- a/services/horizon/internal/ingest/verify.go +++ b/services/horizon/internal/ingest/verify.go @@ -29,7 +29,7 @@ const assetStatsBatchSize = 500 // check them. // There is a test that checks it, to fix it: update the actual `verifyState` // method instead of just updating this value! -const stateVerifierExpectedIngestionVersion = 18 +const stateVerifierExpectedIngestionVersion = 17 // verifyState is called as a go routine from pipeline post hook every 64 // ledgers. It checks if the state is correct. If another go routine is already