Skip to content

Commit

Permalink
fix toml
Browse files Browse the repository at this point in the history
  • Loading branch information
kanishkatn committed May 18, 2023
1 parent bc11cfc commit 102f592
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.staging
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ RUN ["sh", "-c", "mv .github/workflows/staging/openmetrics.d/${chain}-conf.yaml
RUN go get ./...
RUN go install -trimpath github.com/ChainSafe/gossamer/cmd/gossamer

RUN ["sh", "-c", "gossamer init --chain=${chain} --base-path=${basepath}"]
ENTRYPOINT ["sh", "-c", "service datadog-agent start && gossamer --chain=${chain} --base-path=${basepath} --prometheus-external --prometheus-port=9876 --pprof.enabled --pprof.listening-address=\":6060\""]
RUN ["sh", "-c", "gossamer init --chain=${chain} --base-path=${basepath}/${chain}"]
ENTRYPOINT ["sh", "-c", "service datadog-agent start && gossamer --chain=${chain} --base-path=${basepath}/${chain} --prometheus-external --prometheus-port=9876 --pprof.enabled --pprof.listening-address=\":6060\""]
EXPOSE 7001 8546 8540 9876 6060
2 changes: 1 addition & 1 deletion config/toml.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ unlock = "{{ .Account.Unlock }}"
port = {{ .Network.Port }}
# Comma separated node URLs for network discovery bootstrap
bootnodes = "{{ StringsJoin .Network.Bootnodes ", " }}"
bootnodes = "{{ StringsJoin .Network.Bootnodes "," }}"
# Protocol ID to use
protocol-id = "{{ .Network.ProtocolID }}"
Expand Down

0 comments on commit 102f592

Please sign in to comment.