diff options
| author | jtimon <[email protected]> | 2014-06-12 14:52:12 +0200 |
|---|---|---|
| committer | jtimon <[email protected]> | 2014-06-17 13:11:36 +0200 |
| commit | f6984e814134d2383e1353ce8aa951649f5fcbd2 (patch) | |
| tree | 1fde9706d9339161c32c870ee6bc4955654a4680 /src/rpcblockchain.cpp | |
| parent | Get rid of Params().RPCisTestNet() (diff) | |
| download | discoin-f6984e814134d2383e1353ce8aa951649f5fcbd2.tar.xz discoin-f6984e814134d2383e1353ce8aa951649f5fcbd2.zip | |
Add "chain" to getmininginfo, improve help in getblockchaininfo
Diffstat (limited to 'src/rpcblockchain.cpp')
| -rw-r--r-- | src/rpcblockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index 0fabc8687..580c6bd5b 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -438,7 +438,7 @@ Value getblockchaininfo(const Array& params, bool fHelp) "Returns an object containing various state info regarding block chain processing.\n" "\nResult:\n" "{\n" - " \"chain\": \"xxxx\", (string) current chain (main, testnet3, regtest)\n" + " \"chain\": \"xxxx\", (string) current network name as defined in BIP70 (main, test, regtest)\n" " \"blocks\": xxxxxx, (numeric) the current number of blocks processed in the server\n" " \"bestblockhash\": \"...\", (string) the hash of the currently best block\n" " \"difficulty\": xxxxxx, (numeric) the current difficulty\n" |