634604d0b5
- fetches logs from all three price feeds in one query - assumes eth/usd price feed will be updated to include LogValue event - updates transformers to run separate from header sync
28 lines
828 B
Go
28 lines
828 B
Go
package history
|
|
|
|
import (
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore"
|
|
)
|
|
|
|
type HeaderValidator struct {
|
|
blockChain core.BlockChain
|
|
headerRepository datastore.HeaderRepository
|
|
windowSize int
|
|
}
|
|
|
|
func NewHeaderValidator(blockChain core.BlockChain, repository datastore.HeaderRepository, windowSize int) HeaderValidator {
|
|
return HeaderValidator{
|
|
blockChain: blockChain,
|
|
headerRepository: repository,
|
|
windowSize: windowSize,
|
|
}
|
|
}
|
|
|
|
func (validator HeaderValidator) ValidateHeaders() ValidationWindow {
|
|
window := MakeValidationWindow(validator.blockChain, validator.windowSize)
|
|
blockNumbers := MakeRange(window.LowerBound, window.UpperBound)
|
|
RetrieveAndUpdateHeaders(validator.blockChain, validator.headerRepository, blockNumbers)
|
|
return window
|
|
}
|