PR fixes; remove all infura token references and setup travis to use encrypted env

variable; rest of the ethjson_rpc dependent tests extracted to integration_test
This commit is contained in:
Ian Norden
2019-03-21 18:36:51 -05:00
parent d3e172d9ab
commit 1aa849bcb4
32 changed files with 242 additions and 232 deletions
+5 -3
View File
@@ -46,7 +46,7 @@ Requires a .toml config file:
port = 5432
[client]
ipcPath = "path_to_ethjson_rpc"
ipcPath = "/Users/user/Library/Ethereum/geth.ipc"
[contract]
network = ""
@@ -112,12 +112,14 @@ func contractWatcher() {
}
for range ticker.C {
t.Execute()
err = t.Execute()
if err != nil {
log.Error("Execution error for transformer:", t.GetConfig().Name, err)
}
}
}
func init() {
rootCmd.AddCommand(contractWatcherCmd)
contractWatcherCmd.Flags().StringVarP(&mode, "mode", "o", "light", "'light' or 'full' mode to work with either light synced or fully synced vDB (default is light)")
}