From c970eec01e51cb9f53e937dac7741ece0e20d892 Mon Sep 17 00:00:00 2001 From: Marko Atanasievski Date: Fri, 22 Sep 2023 16:41:05 +0200 Subject: [PATCH] fix: polygon edge version info --- .goreleaser.yml | 8 ++++---- command/server/config/config.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 446170d70b..e9c73f1914 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -16,7 +16,7 @@ builds: env: - CC=o64-clang - CXX=o64-clang++ - ldflags: -s -w -X 'github.com/topos-protocol/polygon-edge/versioning.Version=v{{ .Version }}' + ldflags: -s -w -X 'github.com/0xPolygon/polygon-edge/versioning.Version=v{{ .Version }}' -X 'github.com/0xPolygon/polygon-edge/versioning.Commit={{ .Commit }}' -X 'github.com/0xPolygon/polygon-edge/versioning.Branch={{ .Branch }}' - id: darwin-arm64 main: ./main.go @@ -28,7 +28,7 @@ builds: env: - CC=oa64-clang - CXX=oa64-clang++ - ldflags: -s -w -X 'github.com/topos-protocol/polygon-edge/versioning.Version=v{{ .Version }}' + ldflags: -s -w -X 'github.com/0xPolygon/polygon-edge/versioning.Version=v{{ .Version }}' -X 'github.com/0xPolygon/polygon-edge/versioning.Commit={{ .Commit }}' -X 'github.com/0xPolygon/polygon-edge/versioning.Branch={{ .Branch }}' - id: linux-amd64 main: ./main.go @@ -42,7 +42,7 @@ builds: - CXX=g++ ldflags: # We need to build a static binary because we are building in a glibc based system and running in a musl container - -s -w -linkmode external -extldflags "-static" -X 'github.com/topos-protocol/polygon-edge/versioning.Version=v{{ .Version }}' + -s -w -linkmode external -extldflags "-static" -X 'github.com/0xPolygon/polygon-edge/versioning.Version=v{{ .Version }}' -X 'github.com/0xPolygon/polygon-edge/versioning.Commit={{ .Commit }}' -X 'github.com/0xPolygon/polygon-edge/versioning.Branch={{ .Branch }}' tags: - netgo - osusergo @@ -59,7 +59,7 @@ builds: - CXX=aarch64-linux-gnu-g++ ldflags: # We need to build a static binary because we are building in a glibc based system and running in a musl container - -s -w -linkmode external -extldflags "-static" -X 'github.com/topos-protocol/polygon-edge/versioning.Version=v{{ .Version }}' + -s -w -linkmode external -extldflags "-static" -X 'github.com/0xPolygon/polygon-edge/versioning.Version=v{{ .Version }}' -X 'github.com/0xPolygon/polygon-edge/versioning.Commit={{ .Commit }}' -X 'github.com/0xPolygon/polygon-edge/versioning.Branch={{ .Branch }}' tags: - netgo - osusergo diff --git a/command/server/config/config.go b/command/server/config/config.go index bb0656f996..e459575748 100644 --- a/command/server/config/config.go +++ b/command/server/config/config.go @@ -144,7 +144,7 @@ func DefaultConfig() *Config { WebSocketReadLimit: DefaultWebSocketReadLimit, RelayerTrackerPollInterval: DefaultRelayerTrackerPollInterval, MetricsInterval: DefaultMetricsInterval, - ToposSequencerAddr: "", + ToposSequencerAddr: "", } }