fix transaction signing, also removes need for rpc call to do it

This commit is contained in:
Ian Norden
2019-12-02 13:24:58 -06:00
parent e72995605d
commit 89faa85871
2 changed files with 10 additions and 10 deletions
+3 -1
View File
@@ -19,6 +19,8 @@ package seed_node
import (
"sync"
"github.com/ethereum/go-ethereum/params"
"github.com/vulcanize/vulcanizedb/libraries/shared/streamer"
"github.com/vulcanize/vulcanizedb/pkg/ipfs"
@@ -98,7 +100,7 @@ func NewProcessor(ipfsPath string, db *postgres.DB, ethClient core.EthClient, rp
return &Service{
Streamer: streamer.NewStateDiffStreamer(rpcClient),
Repository: NewCIDRepository(db),
Converter: ipfs.NewPayloadConverter(ethClient),
Converter: ipfs.NewPayloadConverter(params.MainnetChainConfig),
Publisher: publisher,
Filterer: NewResponseFilterer(),
Fetcher: fetcher,