diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-26 12:26:43 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-31 08:41:45 +0200 |
commit | ab88ed93efbdfd583b8c769060f7bfe6928687a9 (patch) | |
tree | f0699eadb510e17f987d11efc4558eff4c6e991d /src/rpcnet.cpp | |
parent | ad603f815f2554a5f865953ffff8ac88e109fa21 (diff) |
Organize RPCCommands table
Use sensible categories (overall control, P2P, blockchain/UTXO and
mining, wallet, wallet-enabled mining) and sort within each.
Also remove unnecessary #ifdef ENABLE_WALLET from `rpcnet.cpp`.
Functionality-neutral change.
Diffstat (limited to 'src/rpcnet.cpp')
-rw-r--r-- | src/rpcnet.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/rpcnet.cpp b/src/rpcnet.cpp index 3fe328772a..1b56d9ae7d 100644 --- a/src/rpcnet.cpp +++ b/src/rpcnet.cpp @@ -10,10 +10,6 @@ #include "protocol.h" #include "sync.h" #include "util.h" -#ifdef ENABLE_WALLET -#include "init.h" // for getinfo -#include "wallet.h" // for getinfo -#endif #include <boost/foreach.hpp> #include "json/json_spirit_value.h" |