ipld-eth-server/pkg/geth/converters/common/transaction_converter.go
2018-05-04 10:54:00 -05:00

11 lines
238 B
Go

package common
import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/vulcanize/vulcanizedb/pkg/core"
)
type TransactionConverter interface {
ConvertTransactionsToCore(gethBlock *types.Block) ([]core.Transaction, error)
}