mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
change ports
This commit is contained in:
parent
8231c2259a
commit
48bf690281
@ -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).
|
Proudly building on the work of [Cosmos](https://github.com/cosmos/cosmos-sdk) and [Interledger](https://github.com/interledger/rfcs).
|
||||||
|
|
||||||
# Project Status
|
# 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)
|
[![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)
|
[![GitHub](https://img.shields.io/github/license/kava-labs/kava.svg)](https://github.com/Kava-Labs/kava/blob/master/LICENSE.md)
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ services:
|
|||||||
image: kava/kava
|
image: kava/kava
|
||||||
command: ["kvd", "start"]
|
command: ["kvd", "start"]
|
||||||
ports:
|
ports:
|
||||||
- 26657:26657
|
- 17127:17127
|
||||||
volumes:
|
volumes:
|
||||||
- ~/.kvd:/root/.kvd
|
- ~/.kvd:/root/.kvd
|
||||||
- ~/.kvcli:/root/.kvcli
|
- ~/.kvcli:/root/.kvcli
|
||||||
|
@ -73,7 +73,7 @@ Or, to start in the background and capture output to a log file:
|
|||||||
To see the output of the log:
|
To see the output of the log:
|
||||||
|
|
||||||
tail -f kvd.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
|
## Become a Validator
|
||||||
|
@ -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(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(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.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")
|
cmd.Flags().Int(flagMaxOpenConnections, 1000, "The number of maximum open connections")
|
||||||
|
|
||||||
return cmd
|
return cmd
|
||||||
|
Loading…
Reference in New Issue
Block a user