From 31576ff5fcd5ab770a406262de51aab0435b4118 Mon Sep 17 00:00:00 2001 From: mdr0id Date: Fri, 7 Jun 2019 14:13:22 -0700 Subject: [PATCH] Update ingest logic stream to start at actual Sapling testnet height --- cmd/ingest/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/ingest/main.go b/cmd/ingest/main.go index 447d5b4..009edff 100644 --- a/cmd/ingest/main.go +++ b/cmd/ingest/main.go @@ -120,8 +120,8 @@ func main() { } //ingest from Sapling testnet height - if height < 252500 { - height = 252500 + if height < 280000 { + height = 280000 log.WithFields(logrus.Fields{ "error": err, }).Warn("invalid current height read from local db storage")