removing mcd/maker references; delete test_data; update READMEs; use

logrus
This commit is contained in:
Ian Norden
2019-02-24 21:53:04 -06:00
parent 3d34a9e7c9
commit f2072561a7
268 changed files with 493 additions and 781 deletions
+2 -2
View File
@@ -22,8 +22,8 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
"github.com/vulcanize/vulcanizedb/libraries/shared/storage/utils"
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
)
type Mappings interface {
@@ -62,4 +62,4 @@ func GetIncrementedKey(original common.Hash, incrementBy int64) common.Hash {
originalMappingAsInt := original.Big()
incremented := big.NewInt(0).Add(originalMappingAsInt, big.NewInt(incrementBy))
return common.BytesToHash(incremented.Bytes())
}
}