From da68d53e77c01fa7242371c88288d1cee25d6613 Mon Sep 17 00:00:00 2001 From: d Date: Fri, 2 Feb 2018 08:48:10 +0100 Subject: [PATCH] remove old wallet.enable flag (#347) * Fix rpc server error (#195) * remove old wallet.enable flag --- README.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 402ae3d9..f299a876 100644 --- a/README.md +++ b/README.md @@ -99,13 +99,25 @@ After that, you'll see `.bytomd` generated in current directory, then launch the ### launch ``` bash -$ ./bytomd node --wallet.enable --mining +$ ./bytomd node --mining ``` available flags for `bytomd node`: -- `--wallet.enable` -- `--mining` +``` + --auth.disable Disable rpc access authenticate + --mining Enable mining + --p2p.dial_timeout int Set dial timeout (default 3) + --p2p.handshake_timeout int Set handshake timeout (default 30) + --p2p.laddr string Node listen address. + --p2p.max_num_peers int Set max num peers (default 50) + --p2p.pex Enable Peer-Exchange + --p2p.seeds string Comma delimited host:port seed nodes + --p2p.skip_upnp Skip UPNP configuration + --prof_laddr string Use http to profile bytomd programs + --wallet.disable Disable wallet + --web.closed Lanch web browser or not +``` Given the `bytomd` node is running, the general workflow is as follows: @@ -123,7 +135,7 @@ $ open http://localhost:9888/ ### Create key -With `--wallet.enable`, you can create a key: +You can create a key with the following command: ```bash $ ./bytomcli create-key alice 123 -- 2.11.0