diff options
author | Michael Ford <fanquake@gmail.com> | 2014-11-20 10:19:29 +0800 |
---|---|---|
committer | Michael Ford <fanquake@gmail.com> | 2014-11-20 10:19:39 +0800 |
commit | 72fb3d295ab14d7e6b876d709be23bae1289dab2 (patch) | |
tree | a29bf4a688ef02c7b7ceb99e89d259d0c237120f /src/rpcmining.cpp | |
parent | b5d1b1092998bc95313856d535c632ea5a8f9104 (diff) |
Update comments in src/rpc* to be doxygen compatible
Diffstat (limited to 'src/rpcmining.cpp')
-rw-r--r-- | src/rpcmining.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index 2bde02c0a1..81120ba981 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto -// Copyright (c) 2009-2013 The Bitcoin developers -// Distributed under the MIT/X11 software license, see the accompanying +// Copyright (c) 2009-2014 The Bitcoin developers +// Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "amount.h" @@ -28,9 +28,11 @@ using namespace json_spirit; using namespace std; -// Return average network hashes per second based on the last 'lookup' blocks, -// or from the last difficulty change if 'lookup' is nonpositive. -// If 'height' is nonnegative, compute the estimate at the time when a given block was found. +/** + * Return average network hashes per second based on the last 'lookup' blocks, + * or from the last difficulty change if 'lookup' is nonpositive. + * If 'height' is nonnegative, compute the estimate at the time when a given block was found. + */ Value GetNetworkHashPS(int lookup, int height) { CBlockIndex *pb = chainActive.Tip(); |