Skip to content

Commit f918b64

Browse files
author
limxdev
committed
Merge branch 'master' of https://github.com/LIMXTEC/BitCore into 0.9.8.x
2 parents 9033c57 + 15503bc commit f918b64

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/init.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,8 @@ void SetupServerArgs()
430430
gArgs.AddArg("-par=<n>", strprintf("Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d)",
431431
-GetNumCores(), MAX_SCRIPTCHECK_THREADS, DEFAULT_SCRIPTCHECK_THREADS), false, OptionsCategory::OPTIONS);
432432
gArgs.AddArg("-persistmempool", strprintf("Whether to save the mempool on shutdown and load on restart (default: %u)", DEFAULT_PERSIST_MEMPOOL), false, OptionsCategory::OPTIONS);
433+
gArgs.AddArg("-masternodeprivkey=<n>", "Set the masternode private key", false, OptionsCategory::OPTIONS);
434+
gArgs.AddArg("-masternodeaddr=<n>", "Set external address:port to get to this masternode.", false, OptionsCategory::OPTIONS);
433435
#ifndef WIN32
434436
gArgs.AddArg("-pid=<file>", strprintf("Specify pid file. Relative paths will be prefixed by a net-specific datadir location. (default: %s)", BITCOIN_PID_FILENAME), false, OptionsCategory::OPTIONS);
435437
#else

src/rpc/masternode.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,8 @@ UniValue masternodelist(const JSONRPCRequest& request)
512512
" addr - Print ip address associated with a masternode (can be additionally filtered, partial match)\n"
513513
" full - Print info in format 'status protocol payee lastseen activeseconds lastpaidtime lastpaidblock IP'\n"
514514
" (can be additionally filtered, partial match)\n"
515+
" info - Print info in format 'status protocol payee lastseen activeseconds IP'\n"
516+
" (can be additionally filtered, partial match)\n"
515517
" lastpaidblock - Print the last block height a node was paid on the network\n"
516518
" lastpaidtime - Print the last time a node was paid on the network\n"
517519
" lastseen - Print timestamp of when a masternode was last seen on the network\n"

0 commit comments

Comments
 (0)