Update ingest logic stream to start at actual Sapling testnet height

This commit is contained in:
mdr0id 2019-06-07 14:13:22 -07:00
parent 4354ec70c0
commit 31576ff5fc
1 changed files with 2 additions and 2 deletions

View File

@ -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")