From 5b8915132ee424ae4f0936ea7c4aaa9219518a71 Mon Sep 17 00:00:00 2001 From: Matthew Zipkin Date: Fri, 30 Nov 2018 10:00:06 -0800 Subject: [PATCH 1/3] docs/Configuration: SPV is command-line only Addresses confusion similar to https://github.com/bcoin-org/bcoin-docker/issues/8 --- docs/Configuration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Configuration.md b/docs/Configuration.md index b03d9595..d1caa6aa 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -54,6 +54,8 @@ Will create a datadir of `~/.bcoin_spv`, containing a chain database, wallet dat - `cache-size`: Size (in MB) of leveldb cache and write buffer (default: 32mb). - `spv`: Enable Simplified Payments Verification (SPV) mode +*Note: The `spv` option can not be entered in `bcoin.conf`. It will only work when passed as a launch argument: `bcoin --spv`* + ## Logger Options - `log-level`: `error`, `warning`, `info`, `debug`, or `spam` (default: debug). From 4181ee6988fa8dedc204119d907b95b09cec72af Mon Sep 17 00:00:00 2001 From: Matthew Zipkin Date: Fri, 30 Nov 2018 10:02:06 -0800 Subject: [PATCH 2/3] docs/Configuration: spv note lint --- docs/Configuration.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index d1caa6aa..19e90da8 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -54,7 +54,10 @@ Will create a datadir of `~/.bcoin_spv`, containing a chain database, wallet dat - `cache-size`: Size (in MB) of leveldb cache and write buffer (default: 32mb). - `spv`: Enable Simplified Payments Verification (SPV) mode -*Note: The `spv` option can not be entered in `bcoin.conf`. It will only work when passed as a launch argument: `bcoin --spv`* +*Note: The `spv` option can not be entered in `bcoin.conf`. It will only work when passed as a launch argument:* +``` +bcoin --spv +``` ## Logger Options From c4d25391910582f67e93fa45106a2d84cb7ddca3 Mon Sep 17 00:00:00 2001 From: Matthew Zipkin Date: Wed, 5 Dec 2018 08:54:06 -0800 Subject: [PATCH 3/3] docs/Configuration: include daemon in note --- docs/Configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index 19e90da8..b278ab57 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -54,9 +54,9 @@ Will create a datadir of `~/.bcoin_spv`, containing a chain database, wallet dat - `cache-size`: Size (in MB) of leveldb cache and write buffer (default: 32mb). - `spv`: Enable Simplified Payments Verification (SPV) mode -*Note: The `spv` option can not be entered in `bcoin.conf`. It will only work when passed as a launch argument:* +*Note: The `spv` and `daemon` options can not be entered in `bcoin.conf`. They will only work when passed as a launch argument:* ``` -bcoin --spv +bcoin --spv --daemon ``` ## Logger Options