Compare commits

...

31 Commits

Author SHA1 Message Date
Jonathan "Duke" Leto 1a22cee1be Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 509bc51c68 Docs about ztxrates 5 years ago
Jonathan "Duke" Leto 0989dbdc1d Lots mo docs 5 years ago
Jonathan "Duke" Leto 2e24035318 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 0ea6bb5764 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 89b2ee896d add missing zstat and new dep 5 years ago
Jonathan "Duke" Leto a00c217b75 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 328a2af799 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 1ef061fe8f Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 3436687e04 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 6143ddd601 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 8baaa6315f Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 2d49d843e3 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto fffc6c1763 Merge branch 'duke' into dev 5 years ago
Duke Leto 1cf04387b5 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto d3ec48e772 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 691f5eed4b Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto b2055ab33b Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 5a5207171c Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto dd1669ec41 Fix link in readme to install instructions 5 years ago
Jonathan "Duke" Leto 21e6117525 fixes 5 years ago
Jonathan "Duke" Leto 330498f79a web wallet details 5 years ago
Jonathan "Duke" Leto 5365abe7cc Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 1593585a75 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 4e1eb17f28 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto fd6e4f8c6b Merge remote-tracking branch 'jl777/FSM' into dev 5 years ago
Jonathan "Duke" Leto 73640b76c4 Merge remote-tracking branch 'jl777/FSM' into dev 5 years ago
Jonathan "Duke" Leto b1f92a4d69 Merge branch 'duke' into dev 5 years ago
Jonathan "Duke" Leto 1ce6ddbf1e Merge branch 'duke' into dev 5 years ago
Duke Leto 6b5958224e
Merge pull request #4 from lukechilds/patch-7 5 years ago
Luke Childs 9e7c323d6d
Fix hushd to work when called via symlink 5 years ago
  1. 21
      src/rpc/blockchain.cpp

21
src/rpc/blockchain.cpp

@ -1953,14 +1953,31 @@ UniValue getchaintxstats(const UniValue& params, bool fHelp)
"\nResult:\n"
"{\n"
" \"time\": xxxxx, (numeric) The timestamp for the final block in the window in UNIX format.\n"
" \"notarizations\": xxxxx, (optional, numeric) The number of notarizations in the chain.\n"
" \"notarizations\": xxxxx, (numeric) The number of notarizations in the chain. Only returned if zindex=1\n"
" \"txcount\": xxxxx, (numeric) The total number of transactions in the chain up to that point.\n"
" \"window_final_block_hash\": \"...\", (string) The hash of the final block in the window.\n"
" \"window_final_block_height\": \"...\", (numeric) The height of the final block in the window.\n"
" \"window_block_count\": xxxxx, (numeric) Size of the window in number of blocks.\n"
" \"window_notarizations\": xxxxx, (optional, numeric) Number of notarization transactions in window.\n"
" \"window_notarizations\": xxxxx, (numeric) Number of notarization transactions in window. Only returned if zindex=1\n"
" \"window_tx_count\": xxxxx, (numeric) The number of transactions in the window. Only returned if \"window_block_count\" is > 0.\n"
" \"window_payments\": xxxxx, (numeric) The number of payments in the window. Only returned if \"window_block_count\" is > 0 and zindex=1.\n"
" \"window_interval\": xxxxx, (numeric) The elapsed time in the window in seconds. Only returned if \"window_block_count\" is > 0.\n"
" \"txrate\": x.xx, (numeric) The average rate of transactions per second in the window. Only returned if \"window_interval\" is > 0.\n"
" \"shielded_txrate\": x.xx, (numeric) The average rate of shielded transactions per second in the window. Only returned if \"window_interval\" is > 0 and zindex=1.\n"
" \"shielding_txrate\": x.xx, (numeric) The average rate of shielding transactions per second in the window. Only returned if \"window_interval\" is > 0 and zindex=1.\n"
" \"deshielding_txrate\": x.xx, (numeric) The average rate of deshielding transactions per second in the window. Only returned if \"window_interval\" is > 0 and zindex=1.\n"
" \"fully_shielded_txrate\": x.xx, (numeric) The average rate of fully shielded transactions per second in the window. Only returned if \"window_interval\" is > 0 and zindex=1.\n"
" \"notarization_txrate\": x.xx, (numeric) The average rate of notarization transactions per second in the window. Only returned if \"window_interval\" is > 0 and zindex=1.\n"
" \"paymentrate\": x.xx, (numeric) The average rate of payments per second in the window. Only returned if \"window_interval\" is > 0 and zindex=1.\n"
" \"shielded_paymentrate\": x.xx, (numeric) The average rate of shielded payments per second in the window. Only returned if \"window_interval\" is > 0 and zindex=1.\n"
" \"shielded_txcount\": xxxxx, (numeric) The total number of shielded transactions in the chain up to that point. Only returned if zindex=1\n"
" \"fully_shielded_txcount\": xxxxx, (numeric) The total number of fully shielded transactions (z2z) in the chain up to that point. Only returned if zindex=1\n"
" \"shielding_txcount\": xxxxx, (numeric) The total number of shielding transactions (t=>z) in the chain up to that point. Only returned if zindex=1\n"
" \"deshielding_txcount\": xxxxx, (numeric) The total number of deshielding transactions (z=>t) in the chain up to that point. Only returned if zindex=1\n"
" \"shielded_payments\": xxxxx, (numeric) The total number of shielded payments in the chain up to that point. Only returned if zindex=1\n"
" \"fully_shielded_payments\": xxxxx, (numeric) The total number of fully shielded payments (z2z) in the chain up to that point. Only returned if zindex=1\n"
" \"shielding_payments\": xxxxx, (numeric) The total number of shielding payments (t=>z) in the chain up to that point. Only returned if zindex=1\n"
" \"deshielding_payments\": xxxxx, (numeric) The total number of deshielding payments (z=>t) in the chain up to that point. Only returned if zindex=1\n"
"}\n"
"\nExamples:\n"
+ HelpExampleCli("getchaintxstats", "")

Loading…
Cancel
Save