Removes import alias for logrus

This commit is contained in:
yaoandrew
2019-12-02 23:08:48 -06:00
committed by Ian Norden
parent e26fa12af0
commit 0b9f29c300
15 changed files with 49 additions and 55 deletions
+2 -3
View File
@@ -17,8 +17,7 @@
package testing
import (
log "github.com/sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/vulcanize/vulcanizedb/pkg/core"
"github.com/vulcanize/vulcanizedb/pkg/eth"
"github.com/vulcanize/vulcanizedb/test_config"
@@ -34,7 +33,7 @@ func SampleContract() core.Contract {
func sampleAbiFileContents() string {
abiFileContents, err := eth.ReadAbiFile(test_config.ABIFilePath + "sample_abi.json")
if err != nil {
log.Fatal(err)
logrus.Fatal(err)
}
return abiFileContents
}