From ed8ef59e82318a37c0a0e94cd4c5b5c1a8d29356 Mon Sep 17 00:00:00 2001 From: S Aruna Date: Tue, 22 Jan 2019 21:48:06 +0530 Subject: [PATCH 1/2] Add valid options to testnet3 --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 63e5a78ce..8e9baaada 100644 --- a/README.md +++ b/README.md @@ -67,12 +67,20 @@ go build -v .\cmd\lit-af ### Running lit -The below command will run Lit on the Bitcoin testnet3 network +The below command will run Lit on the Bitcoin `TestNet3` network. You can also run Lit on other networks (check the `lit/coinparam` directory) (Note: Windows users should take off `./` but need to change `lit` to `lit.exe`) ```bash -./lit --tn3=true +./lit --tn3 -vvv +``` + +The list of testnet3 seeds are available in `coinparam/bitcoin.go`, when you search for `TestNet3`. For convenience, you can use any of the following, for running `lit` on `TestNet3` +``` +testnet-seed.bitcoin.jonasschnelli.ch +seed.tbtc.petertodd.org +seed.testnet.bitcoin.sprovoost.nl +testnet-seed.bluematt.me ``` The words `yup, yes, y, true, 1, ok, enable, on` can be used to specify that Lit From 7f5bdc4d421c6cb4d874b28806a40e79c5b6c042 Mon Sep 17 00:00:00 2001 From: S Aruna Date: Tue, 22 Jan 2019 22:17:06 +0530 Subject: [PATCH 2/2] --tn3=true works too --- README.md | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 8e9baaada..a23b5d8b6 100644 --- a/README.md +++ b/README.md @@ -72,20 +72,11 @@ The below command will run Lit on the Bitcoin `TestNet3` network. You can also r (Note: Windows users should take off `./` but need to change `lit` to `lit.exe`) ```bash -./lit --tn3 -vvv +./lit --tn3 true -vvv ``` -The list of testnet3 seeds are available in `coinparam/bitcoin.go`, when you search for `TestNet3`. For convenience, you can use any of the following, for running `lit` on `TestNet3` -``` -testnet-seed.bitcoin.jonasschnelli.ch -seed.tbtc.petertodd.org -seed.testnet.bitcoin.sprovoost.nl -testnet-seed.bluematt.me -``` - -The words `yup, yes, y, true, 1, ok, enable, on` can be used to specify that Lit -automatically connect to peers fetched from a list of DNS seeds. It can also be replaced by -the address of the node you wish to connect to. +The words `yup, yes, y, true, 1, ok, enable, on` can be used to specify that `Lit` +automatically connect to peers fetched from a list of DNS seeds, specified in the `coinparam` directory for various networks. It can also be replaced by the address of the node you wish to connect to. ### Packaging