Rename geth to eth, signifying client independence (#161)

This commit is contained in:
Edvard Hübinette
2019-10-28 12:30:24 +01:00
committed by GitHub
parent f7c4a6736d
commit 3fff2896aa
52 changed files with 111 additions and 111 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ package config
import (
log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
"github.com/vulcanize/vulcanizedb/pkg/geth"
"github.com/vulcanize/vulcanizedb/pkg/eth"
"strings"
)
@@ -98,7 +98,7 @@ func (contractConfig *ContractConfig) PrepConfig() {
}
}
if abi != "" {
if _, abiErr := geth.ParseAbi(abi); abiErr != nil {
if _, abiErr := eth.ParseAbi(abi); abiErr != nil {
log.Fatal(addr, "transformer `abi` not valid JSON")
}
}