ipld-eth-server/pkg/geth/converters/common/transaction_converter.go

11 lines
238 B
Go
Raw Normal View History

2018-05-02 16:17:02 +00:00
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)
}