Browse Source

Update ingest logic stream to start at actual Sapling testnet height

remove_0mq
mdr0id 5 years ago
parent
commit
31576ff5fc
  1. 4
      cmd/ingest/main.go

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

Loading…
Cancel
Save