File tree Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 13
13
#include < stdexcept>
14
14
#include < vector>
15
15
16
- struct CExtPubKey ;
17
16
class CPubKey ;
18
17
18
+ struct CExtPubKey ;
19
+
19
20
/* *
20
21
* secp256k1:
21
22
* const unsigned int PRIVATE_KEY_SIZE = 279;
Original file line number Diff line number Diff line change 12
12
#include " guiutil.h"
13
13
#include " optionsmodel.h"
14
14
#include " sendcoinsentry.h"
15
- #include " wallet.h"
16
15
#include " walletmodel.h"
17
16
18
17
#include " base58.h"
19
18
#include " coincontrol.h"
20
19
#include " ui_interface.h"
20
+ #include " wallet.h"
21
21
22
22
#include < QMessageBox>
23
23
#include < QScrollBar>
Original file line number Diff line number Diff line change 1
1
// Copyright (c) 2009-2010 Satoshi Nakamoto
2
- // Copyright (c) 2009-2012 The Bitcoin developers
3
- // Distributed under the MIT/X11 software license, see the accompanying
2
+ // Copyright (c) 2009-2014 The Bitcoin developers
3
+ // Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
6
- #include < boost/algorithm/string.hpp>
7
- #include " rpcserver.h"
8
- #include " streams.h"
9
- #include " utilstrencodings.h"
10
6
#include " core/block.h"
11
7
#include " core/transaction.h"
12
- #include " version.h"
13
8
#include " main.h"
9
+ #include " rpcserver.h"
10
+ #include " streams.h"
14
11
#include " sync.h"
12
+ #include " utilstrencodings.h"
13
+ #include " version.h"
14
+
15
+ #include < boost/algorithm/string.hpp>
15
16
16
17
using namespace std ;
17
18
using namespace json_spirit ;
@@ -163,7 +164,7 @@ static bool rest_tx(AcceptedConnection *conn,
163
164
string strJSON = write_string (Value (objTx), false ) + " \n " ;
164
165
conn->stream () << HTTPReply (HTTP_OK, strJSON, fRun ) << std::flush;
165
166
return true ;
166
- }
167
+ }
167
168
}
168
169
169
170
// not reached
@@ -203,4 +204,3 @@ bool HTTPReq_REST(AcceptedConnection *conn,
203
204
conn->stream () << HTTPError (HTTP_NOT_FOUND, false ) << std::flush;
204
205
return false ;
205
206
}
206
-
You can’t perform that action at this time.
0 commit comments