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/rpcclient.cpp | |
parent | b5d1b1092998bc95313856d535c632ea5a8f9104 (diff) |
Update comments in src/rpc* to be doxygen compatible
Diffstat (limited to 'src/rpcclient.cpp')
-rw-r--r-- | src/rpcclient.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp index 7a1f1918f6..03ce9acbbf 100644 --- a/src/rpcclient.cpp +++ b/src/rpcclient.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 "rpcclient.h" @@ -18,8 +18,8 @@ using namespace json_spirit; class CRPCConvertParam { public: - std::string methodName; // method whose params want conversion - int paramIdx; // 0-based idx of param to convert + std::string methodName; //! method whose params want conversion + int paramIdx; //! 0-based idx of param to convert }; static const CRPCConvertParam vRPCConvertParams[] = @@ -116,7 +116,7 @@ CRPCConvertTable::CRPCConvertTable() static CRPCConvertTable rpcCvtTable; -// Convert strings to command-specific RPC representation +/** Convert strings to command-specific RPC representation */ Array RPCConvertValues(const std::string &strMethod, const std::vector<std::string> &strParams) { Array params; |