change omniwatcher database test helpers so that it doesn't interfere with downstream maker tests

This commit is contained in:
Ian Norden
2019-01-23 14:55:20 -06:00
parent 46b898f690
commit dc87f39889
8 changed files with 38 additions and 18 deletions
+1 -2
View File
@@ -20,12 +20,12 @@ import (
"os"
"time"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/rpc"
"github.com/mitchellh/go-homedir"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/vulcanize/vulcanizedb/pkg/config"
"github.com/vulcanize/vulcanizedb/pkg/geth"
@@ -131,4 +131,3 @@ func getBlockChain() *geth.BlockChain {
transactionConverter := vRpc.NewRpcTransactionConverter(ethClient)
return geth.NewBlockChain(vdbEthClient, rpcClient, vdbNode, transactionConverter)
}