Browse Source

Merge pull request #5309

4574248 [Qt] minor ordering cleanup after new fee selection (Philip Kaufmann)
a01fa30 minor style cleanup after HTTP rest interface merge (Philip Kaufmann)
0.10
Wladimir J. van der Laan 10 years ago
parent
commit
dfc8e1432a
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 3
      src/key.h
  2. 2
      src/qt/sendcoinsdialog.cpp
  3. 16
      src/rest.cpp

3
src/key.h

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

2
src/qt/sendcoinsdialog.cpp

@ -12,12 +12,12 @@ @@ -12,12 +12,12 @@
#include "guiutil.h"
#include "optionsmodel.h"
#include "sendcoinsentry.h"
#include "wallet.h"
#include "walletmodel.h"
#include "base58.h"
#include "coincontrol.h"
#include "ui_interface.h"
#include "wallet.h"
#include <QMessageBox>
#include <QScrollBar>

16
src/rest.cpp

@ -1,17 +1,18 @@ @@ -1,17 +1,18 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 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 <boost/algorithm/string.hpp>
#include "rpcserver.h"
#include "streams.h"
#include "utilstrencodings.h"
#include "core/block.h"
#include "core/transaction.h"
#include "version.h"
#include "main.h"
#include "rpcserver.h"
#include "streams.h"
#include "sync.h"
#include "utilstrencodings.h"
#include "version.h"
#include <boost/algorithm/string.hpp>
using namespace std;
using namespace json_spirit;
@ -203,4 +204,3 @@ bool HTTPReq_REST(AcceptedConnection *conn, @@ -203,4 +204,3 @@ bool HTTPReq_REST(AcceptedConnection *conn,
conn->stream() << HTTPError(HTTP_NOT_FOUND, false) << std::flush;
return false;
}

Loading…
Cancel
Save