1355271011
- Only syncs block headers (excludes block bodies, transactions, receipts, and logs) - Modifies validation window to include the most recent block - Isolates validation window to the variable defined in the cmd directory (blocks have a separate variable defined in the block_repository for determining when to set a block as final)
31 lines
1.0 KiB
Go
31 lines
1.0 KiB
Go
package history
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore"
|
|
)
|
|
|
|
func PopulateMissingBlocks(blockchain core.Blockchain, blockRepository datastore.BlockRepository, startingBlockNumber int64) int {
|
|
lastBlock := blockchain.LastBlock().Int64()
|
|
blockRange := blockRepository.MissingBlockNumbers(startingBlockNumber, lastBlock, blockchain.Node().ID)
|
|
log.SetPrefix("")
|
|
log.Printf("Backfilling %d blocks\n\n", len(blockRange))
|
|
RetrieveAndUpdateBlocks(blockchain, blockRepository, blockRange)
|
|
return len(blockRange)
|
|
}
|
|
|
|
func RetrieveAndUpdateBlocks(blockchain core.Blockchain, blockRepository datastore.BlockRepository, blockNumbers []int64) int {
|
|
for _, blockNumber := range blockNumbers {
|
|
block, err := blockchain.GetBlockByNumber(blockNumber)
|
|
if err != nil {
|
|
log.Printf("failed to retrieve block number: %d\n", blockNumber)
|
|
return 0
|
|
}
|
|
// TODO: handle possible error here
|
|
blockRepository.CreateOrUpdateBlock(block)
|
|
}
|
|
return len(blockNumbers)
|
|
}
|