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/rpcmisc.cpp | |
parent | b5d1b1092998bc95313856d535c632ea5a8f9104 (diff) |
Update comments in src/rpc* to be doxygen compatible
Diffstat (limited to 'src/rpcmisc.cpp')
-rw-r--r-- | src/rpcmisc.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rpcmisc.cpp b/src/rpcmisc.cpp index 31eaae6162..90b9c99caa 100644 --- a/src/rpcmisc.cpp +++ b/src/rpcmisc.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers -// Distributed under the MIT/X11 software license, see the accompanying +// Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "base58.h" @@ -30,7 +30,7 @@ using namespace std; /** * @note Do not add or change anything in the information returned by this - * method. `getinfo` exists for backwards-compatibilty only. It combines + * method. `getinfo` exists for backwards-compatibility only. It combines * information from wildly different sources in the program, which is a mess, * and is thus planned to be deprecated eventually. * @@ -198,9 +198,9 @@ Value validateaddress(const Array& params, bool fHelp) return ret; } -// -// Used by addmultisigaddress / createmultisig: -// +/** + * Used by addmultisigaddress / createmultisig: + */ CScript _createmultisig_redeemScript(const Array& params) { int nRequired = params[0].get_int(); |