2017-11-06 20:36:12 +00:00
|
|
|
package history
|
|
|
|
|
|
|
|
import (
|
2018-01-05 17:55:00 +00:00
|
|
|
"log"
|
|
|
|
|
2017-11-06 20:36:12 +00:00
|
|
|
"github.com/8thlight/vulcanizedb/pkg/core"
|
|
|
|
"github.com/8thlight/vulcanizedb/pkg/repositories"
|
|
|
|
)
|
|
|
|
|
2017-12-19 20:14:41 +00:00
|
|
|
func PopulateMissingBlocks(blockchain core.Blockchain, repository repositories.Repository, startingBlockNumber int64) int {
|
2018-01-02 18:39:55 +00:00
|
|
|
lastBlock := blockchain.LastBlock().Int64()
|
|
|
|
blockRange := repository.MissingBlockNumbers(startingBlockNumber, lastBlock-1)
|
2018-01-05 17:55:00 +00:00
|
|
|
log.SetPrefix("")
|
|
|
|
log.Printf("Backfilling %d blocks\n\n", len(blockRange))
|
|
|
|
RetrieveAndUpdateBlocks(blockchain, repository, blockRange)
|
2017-12-19 20:14:41 +00:00
|
|
|
return len(blockRange)
|
|
|
|
}
|
|
|
|
|
2018-01-05 17:55:00 +00:00
|
|
|
func RetrieveAndUpdateBlocks(blockchain core.Blockchain, repository repositories.Repository, blockNumbers []int64) int {
|
2017-11-06 20:36:12 +00:00
|
|
|
for _, blockNumber := range blockNumbers {
|
|
|
|
block := blockchain.GetBlockByNumber(blockNumber)
|
2017-12-19 20:14:41 +00:00
|
|
|
repository.CreateOrUpdateBlock(block)
|
2017-11-06 20:36:12 +00:00
|
|
|
}
|
|
|
|
return len(blockNumbers)
|
|
|
|
}
|