File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ libbitcoin_server_a_SOURCES = \
53
53
noui.cpp \
54
54
rpcblockchain.cpp \
55
55
rpcmining.cpp \
56
+ rpcmisc.cpp \
56
57
rpcnet.cpp \
57
58
rpcrawtransaction.cpp \
58
59
txdb.cpp \
Original file line number Diff line number Diff line change
1
+ // Copyright (c) 2010 Satoshi Nakamoto
2
+ // Copyright (c) 2009-2013 The Bitcoin developers
3
+ // Distributed under the MIT/X11 software license, see the accompanying
4
+ // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
+
6
+ #include " base58.h"
7
+ #include " rpcserver.h"
8
+ #include " init.h"
9
+ #include " main.h"
10
+ #include " net.h"
11
+ #include " netbase.h"
12
+ #include " util.h"
13
+ #ifdef ENABLE_WALLET
14
+ #include " wallet.h"
15
+ #include " walletdb.h"
16
+ #endif
17
+
18
+ #include < stdint.h>
19
+
20
+ #include < boost/assign/list_of.hpp>
21
+ #include " json/json_spirit_utils.h"
22
+ #include " json/json_spirit_value.h"
23
+
24
+ using namespace std ;
25
+ using namespace boost ;
26
+ using namespace boost ::assign;
27
+ using namespace json_spirit ;
28
+
You can’t perform that action at this time.
0 commit comments