remove maker migrations and convert back to timestamps and fix bug in

composeAndExecute command
This commit is contained in:
Ian Norden
2019-02-24 21:52:23 -06:00
parent b449193b16
commit 3d34a9e7c9
25 changed files with 137 additions and 5108 deletions
+2 -1
View File
@@ -87,6 +87,7 @@ const (
func (pt TransformerType) String() string {
names := [...]string{
"Unknown",
"eth_event",
"eth_storage",
}
@@ -105,7 +106,7 @@ func GetTransformerType(str string) TransformerType {
}
for _, ty := range types {
if ty.String() == str && ty.String() != "Unknown" {
if ty.String() == str {
return ty
}
}