From e028bc57f03f627dc509ee1d3e19e6f4f926b71c Mon Sep 17 00:00:00 2001 From: Kirill Fedoseev Date: Tue, 8 Jun 2021 14:26:58 +0300 Subject: [PATCH] Remove config from Dockerfile --- Dockerfile | 1 - main.go | 2 -- 2 files changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 59160f3..b02f926 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,6 @@ WORKDIR /app RUN apt-get update && apt-get install -y ca-certificates && update-ca-certificates -COPY config.yml ./ COPY migrations ./migrations/ COPY --from=build /app/amb-monitor ./ diff --git a/main.go b/main.go index 1dd0798..ee4187b 100644 --- a/main.go +++ b/main.go @@ -7,7 +7,6 @@ import ( "amb-monitor/logging" "amb-monitor/monitor" "context" - "fmt" "os" "os/signal" ) @@ -53,7 +52,6 @@ func main() { } for chainId, client := range clients { - fmt.Println(chainId, cfg.Chains) go monitor.StartBlockIndexer(context.Background(), conn, chainId, client, cfg.Chains[chainId]) }