a683e45855
- Migrate various mocks of core namespaces to shared version in `fakes` pkg - Err on the side of making test doubles less sophisticated - Don't pull over mocks of namespaces that are only used in example code
30 lines
884 B
Go
30 lines
884 B
Go
package history
|
|
|
|
import (
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore"
|
|
)
|
|
|
|
type BlockValidator struct {
|
|
blockchain core.BlockChain
|
|
blockRepository datastore.BlockRepository
|
|
windowSize int
|
|
}
|
|
|
|
func NewBlockValidator(blockchain core.BlockChain, blockRepository datastore.BlockRepository, windowSize int) *BlockValidator {
|
|
return &BlockValidator{
|
|
blockchain: blockchain,
|
|
blockRepository: blockRepository,
|
|
windowSize: windowSize,
|
|
}
|
|
}
|
|
|
|
func (bv BlockValidator) ValidateBlocks() ValidationWindow {
|
|
window := MakeValidationWindow(bv.blockchain, bv.windowSize)
|
|
blockNumbers := MakeRange(window.LowerBound, window.UpperBound)
|
|
RetrieveAndUpdateBlocks(bv.blockchain, bv.blockRepository, blockNumbers)
|
|
lastBlock := bv.blockchain.LastBlock().Int64()
|
|
bv.blockRepository.SetBlocksStatus(lastBlock)
|
|
return window
|
|
}
|