Remove unused recheckHeaders bool argument from Transformer.Execute

This commit is contained in:
Elizabeth Engelman
2019-06-13 10:33:16 -05:00
parent 5088574437
commit ee13d5c1df
5 changed files with 14 additions and 18 deletions
@@ -20,13 +20,12 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/vulcanize/vulcanizedb/libraries/shared/constants"
"github.com/vulcanize/vulcanizedb/pkg/core"
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
)
type EventTransformer interface {
Execute(logs []types.Log, header core.Header, recheckHeaders constants.TransformerExecution) error
Execute(logs []types.Log, header core.Header) error
GetConfig() EventTransformerConfig
}