Skip to content

Commit d056f9b

Browse files
authored
fix: set default proxy_app config value to align with app/v4-cosmos-sdk (#1915)
ref: celestiaorg/celestia-app#4940 In celestia-app/v4 and cosmos-sdk-v0.50-celestia the `address` / `proxy_app` default port was updated to `36658` to not collide with celestia-node when node operators would run a bridge node alongside a celestia consensus node running the app in standalone mode (i.e. with multiplexer). --- #### PR checklist - [ ] Tests written/updated - [ ] Changelog entry added in `.changelog` (we use [unclog](https://github.com/informalsystems/unclog) to manage our changelog) - [ ] Updated relevant documentation (`docs/` or `spec/`) and code comments
1 parent 0ae65d4 commit d056f9b

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

abci/cmd/abci-cli/abci-cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func addGlobalFlags() {
107107
RootCmd.PersistentFlags().StringVarP(&flagAddress,
108108
"address",
109109
"",
110-
"tcp://0.0.0.0:26658",
110+
"tcp://0.0.0.0:36658",
111111
"address of application socket")
112112
RootCmd.PersistentFlags().StringVarP(&flagAbci, "abci", "", "socket", "either socket or grpc")
113113
RootCmd.PersistentFlags().BoolVarP(&flagVerbose,

abci/tests/client_server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
func TestClientServerNoAddrPrefix(t *testing.T) {
1414
t.Helper()
1515

16-
addr := "localhost:26658"
16+
addr := "localhost:36658"
1717
transport := "socket"
1818
app := kvstore.NewInMemoryApplication()
1919

abci/tests/test_cli/testHelp.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Available Commands:
2222

2323
Flags:
2424
--abci string either socket or grpc (default "socket")
25-
--address string address of application socket (default "tcp://0.0.0.0:26658")
25+
--address string address of application socket (default "tcp://0.0.0.0:36658")
2626
-h, --help help for abci-cli
2727
--log_level string set the logger level (default "debug")
2828
-v, --verbose print the command and results as if it were a console session

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ func DefaultBaseConfig() BaseConfig {
262262
PrivValidatorState: defaultPrivValStatePath,
263263
NodeKey: defaultNodeKeyPath,
264264
Moniker: defaultMoniker,
265-
ProxyApp: "tcp://127.0.0.1:26658",
265+
ProxyApp: "tcp://127.0.0.1:36658",
266266
ABCI: "socket",
267267
LogLevel: DefaultLogLevel,
268268
LogFormat: LogFormatPlain,

docs/app-dev/abci-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Available Commands:
4545

4646
Flags:
4747
--abci string either socket or grpc (default "socket")
48-
--address string address of application socket (default "tcp://0.0.0.0:26658")
48+
--address string address of application socket (default "tcp://0.0.0.0:36658")
4949
-h, --help help for abci-cli
5050
--log_level string set the logger level (default "debug")
5151
-v, --verbose print the command and results as if it were a console session

docs/app-dev/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Available Commands:
6464
6565
Flags:
6666
--abci string either socket or grpc (default "socket")
67-
--address string address of application socket (default "tcp://0.0.0.0:26658")
67+
--address string address of application socket (default "tcp://0.0.0.0:36658")
6868
-h, --help help for abci-cli
6969
--log_level string set the logger level (default "debug")
7070
-v, --verbose print the command and results as if it were a console session

docs/core/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ version = "0.38.0"
3535

3636
# TCP or UNIX socket address of the ABCI application,
3737
# or the name of an ABCI application compiled in with the CometBFT binary
38-
proxy_app = "tcp://127.0.0.1:26658"
38+
proxy_app = "tcp://127.0.0.1:36658"
3939

4040
# A custom human readable name for this node
4141
moniker = "anonymous"

docs/core/using-cometbft.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ cometbft node
130130
```
131131

132132
By default, CometBFT will try to connect to an ABCI application on
133-
`tcp://127.0.0.1:26658`. If you have the `kvstore` ABCI app installed, run it in
133+
`tcp://127.0.0.1:36658`. If you have the `kvstore` ABCI app installed, run it in
134134
another window. If you don't, kill CometBFT and run an in-process version of
135135
the `kvstore` app:
136136

docs/networks/docker-compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Override the [command](https://github.com/cometbft/cometbft/blob/v0.38.x/network
158158
- LOG=$${LOG:-cometbft.log}
159159
volumes:
160160
- ./build:/cometbft:Z
161-
command: node --proxy_app=tcp://abci0:26658
161+
command: node --proxy_app=tcp://abci0:36658
162162
networks:
163163
localnet:
164164
ipv4_address: 192.167.10.2

test/e2e/node/socket.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ snapshot_interval = 100
22
persist_interval = 1
33
chain_id = "test-chain"
44
protocol = "socket"
5-
listen = "tcp://127.0.0.1:26658"
5+
listen = "tcp://127.0.0.1:36658"

0 commit comments

Comments
 (0)