change ports

This commit is contained in:
rhuairahrighairigh 2018-10-02 19:35:32 -04:00
parent 8231c2259a
commit 48bf690281
4 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ Providing a base layer currency to settle interoperable payments at high through
Proudly building on the work of [Cosmos](https://github.com/cosmos/cosmos-sdk) and [Interledger](https://github.com/interledger/rfcs).
# Project Status
[![Testnet](https://img.shields.io/badge/testnet-live-brightgreen.svg)](http://validator.connector.kava.io:26657/abci_info)
[![Testnet](https://img.shields.io/badge/testnet-live-brightgreen.svg)](http://validator.connector.kava.io:17127/abci_info)
[![Go Report Card](https://goreportcard.com/badge/github.com/kava-labs/kava)](https://goreportcard.com/report/github.com/kava-labs/kava)
[![GitHub](https://img.shields.io/github/license/kava-labs/kava.svg)](https://github.com/Kava-Labs/kava/blob/master/LICENSE.md)

View File

@ -4,7 +4,7 @@ services:
image: kava/kava
command: ["kvd", "start"]
ports:
- 26657:26657
- 17127:17127
volumes:
- ~/.kvd:/root/.kvd
- ~/.kvcli:/root/.kvcli

View File

@ -73,7 +73,7 @@ Or, to start in the background and capture output to a log file:
To see the output of the log:
tail -f kvd.log
> Note: It might take a while to fully sync. Check the latest block height [here](http://validator.connector.kava.io:26657/abci_info).
> Note: It might take a while to fully sync. Check the latest block height [here](http://validator.connector.kava.io:17127/abci_info).
## Become a Validator

View File

@ -65,7 +65,7 @@ func ServeCommand(cdc *wire.Codec) *cobra.Command {
cmd.Flags().String(flagListenAddr, "tcp://localhost:1317", "The address for the server to listen on")
cmd.Flags().String(flagCORS, "", "Set the domains that can make CORS requests (* for all)")
cmd.Flags().String(client.FlagChainID, "", "The chain ID to connect to")
cmd.Flags().String(client.FlagNode, "tcp://localhost:26657", "Address of the node to connect to")
cmd.Flags().String(client.FlagNode, "tcp://localhost:17127", "Address of the node to connect to")
cmd.Flags().Int(flagMaxOpenConnections, 1000, "The number of maximum open connections")
return cmd