Merge pull request #5745

50c72f2 [Move Only] Move wallet related things to src/wallet/ (Jonas Schnelli)
This commit is contained in:
Wladimir J. van der Laan
2015-03-20 16:05:37 +01:00
38 changed files with 53 additions and 53 deletions

View File

@@ -8,7 +8,7 @@
#include "walletmodel.h"
#include "base58.h"
#include "wallet.h"
#include "wallet/wallet.h"
#include <QFont>
#include <QDebug>

View File

@@ -30,7 +30,7 @@
#include "util.h"
#ifdef ENABLE_WALLET
#include "wallet.h"
#include "wallet/wallet.h"
#endif
#include <stdint.h>

View File

@@ -15,7 +15,7 @@
#include "coincontrol.h"
#include "main.h"
#include "wallet.h"
#include "wallet/wallet.h"
#include <boost/assign/list_of.hpp> // for 'map_list_of()'

View File

@@ -18,7 +18,7 @@
#include "txdb.h" // for -dbcache defaults
#ifdef ENABLE_WALLET
#include "wallet.h" // for CWallet::minTxFee
#include "wallet/wallet.h" // for CWallet::minTxFee
#endif
#include <boost/thread.hpp>

View File

@@ -18,8 +18,8 @@
#include "txdb.h" // for -dbcache defaults
#ifdef ENABLE_WALLET
#include "wallet.h"
#include "walletdb.h"
#include "wallet/wallet.h"
#include "wallet/walletdb.h"
#endif
#include <QNetworkProxy>

View File

@@ -12,7 +12,7 @@
#include "chainparams.h"
#include "ui_interface.h"
#include "util.h"
#include "wallet.h"
#include "wallet/wallet.h"
#include <cstdlib>

View File

@@ -18,7 +18,7 @@
#include "base58.h"
#include "coincontrol.h"
#include "ui_interface.h"
#include "wallet.h"
#include "wallet/wallet.h"
#include <QMessageBox>
#include <QScrollBar>

View File

@@ -12,7 +12,7 @@
#include "base58.h"
#include "init.h"
#include "wallet.h"
#include "wallet/wallet.h"
#include <string>
#include <vector>

View File

@@ -12,7 +12,7 @@
#include "version.h"
#ifdef ENABLE_WALLET
#include "wallet.h"
#include "wallet/wallet.h"
#endif
#include <QApplication>

View File

@@ -10,13 +10,13 @@
#include "transactionrecord.h"
#include "base58.h"
#include "db.h"
#include "wallet/db.h"
#include "main.h"
#include "script/script.h"
#include "timedata.h"
#include "ui_interface.h"
#include "util.h"
#include "wallet.h"
#include "wallet/wallet.h"
#include <stdint.h>
#include <string>

View File

@@ -6,7 +6,7 @@
#include "base58.h"
#include "timedata.h"
#include "wallet.h"
#include "wallet/wallet.h"
#include <stdint.h>

View File

@@ -17,7 +17,7 @@
#include "sync.h"
#include "uint256.h"
#include "util.h"
#include "wallet.h"
#include "wallet/wallet.h"
#include <QColor>
#include <QDateTime>

View File

@@ -12,13 +12,13 @@
#include "transactiontablemodel.h"
#include "base58.h"
#include "db.h"
#include "wallet/db.h"
#include "keystore.h"
#include "main.h"
#include "sync.h"
#include "ui_interface.h"
#include "wallet.h"
#include "walletdb.h" // for BackupWallet
#include "wallet/wallet.h"
#include "wallet/walletdb.h" // for BackupWallet
#include <stdint.h>

View File

@@ -4,7 +4,7 @@
#include "walletmodeltransaction.h"
#include "wallet.h"
#include "wallet/wallet.h"
WalletModelTransaction::WalletModelTransaction(const QList<SendCoinsRecipient> &recipients) :
recipients(recipients),