Browse Source

minor style cleanup after HTTP rest interface merge

- no code changes
0.10
Philip Kaufmann 10 years ago
parent
commit
a01fa3035f
  1. 3
      src/key.h
  2. 18
      src/rest.cpp

3
src/key.h

@ -13,9 +13,10 @@
#include <stdexcept> #include <stdexcept>
#include <vector> #include <vector>
struct CExtPubKey;
class CPubKey; class CPubKey;
struct CExtPubKey;
/** /**
* secp256k1: * secp256k1:
* const unsigned int PRIVATE_KEY_SIZE = 279; * const unsigned int PRIVATE_KEY_SIZE = 279;

18
src/rest.cpp

@ -1,17 +1,18 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers // 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. // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <boost/algorithm/string.hpp>
#include "rpcserver.h"
#include "streams.h"
#include "utilstrencodings.h"
#include "core/block.h" #include "core/block.h"
#include "core/transaction.h" #include "core/transaction.h"
#include "version.h"
#include "main.h" #include "main.h"
#include "rpcserver.h"
#include "streams.h"
#include "sync.h" #include "sync.h"
#include "utilstrencodings.h"
#include "version.h"
#include <boost/algorithm/string.hpp>
using namespace std; using namespace std;
using namespace json_spirit; using namespace json_spirit;
@ -163,7 +164,7 @@ static bool rest_tx(AcceptedConnection *conn,
string strJSON = write_string(Value(objTx), false) + "\n"; string strJSON = write_string(Value(objTx), false) + "\n";
conn->stream() << HTTPReply(HTTP_OK, strJSON, fRun) << std::flush; conn->stream() << HTTPReply(HTTP_OK, strJSON, fRun) << std::flush;
return true; return true;
} }
} }
// not reached // not reached
@ -203,4 +204,3 @@ bool HTTPReq_REST(AcceptedConnection *conn,
conn->stream() << HTTPError(HTTP_NOT_FOUND, false) << std::flush; conn->stream() << HTTPError(HTTP_NOT_FOUND, false) << std::flush;
return false; return false;
} }

Loading…
Cancel
Save