Merge pull request #5745
50c72f2 [Move Only] Move wallet related things to src/wallet/ (Jonas Schnelli)
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
#include "walletmodel.h"
|
||||
|
||||
#include "base58.h"
|
||||
#include "wallet.h"
|
||||
#include "wallet/wallet.h"
|
||||
|
||||
#include <QFont>
|
||||
#include <QDebug>
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
#include "util.h"
|
||||
|
||||
#ifdef ENABLE_WALLET
|
||||
#include "wallet.h"
|
||||
#include "wallet/wallet.h"
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@@ -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()'
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "chainparams.h"
|
||||
#include "ui_interface.h"
|
||||
#include "util.h"
|
||||
#include "wallet.h"
|
||||
#include "wallet/wallet.h"
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
#include "base58.h"
|
||||
#include "init.h"
|
||||
#include "wallet.h"
|
||||
#include "wallet/wallet.h"
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "version.h"
|
||||
|
||||
#ifdef ENABLE_WALLET
|
||||
#include "wallet.h"
|
||||
#include "wallet/wallet.h"
|
||||
#endif
|
||||
|
||||
#include <QApplication>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
#include "base58.h"
|
||||
#include "timedata.h"
|
||||
#include "wallet.h"
|
||||
#include "wallet/wallet.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
#include "sync.h"
|
||||
#include "uint256.h"
|
||||
#include "util.h"
|
||||
#include "wallet.h"
|
||||
#include "wallet/wallet.h"
|
||||
|
||||
#include <QColor>
|
||||
#include <QDateTime>
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
#include "walletmodeltransaction.h"
|
||||
|
||||
#include "wallet.h"
|
||||
#include "wallet/wallet.h"
|
||||
|
||||
WalletModelTransaction::WalletModelTransaction(const QList<SendCoinsRecipient> &recipients) :
|
||||
recipients(recipients),
|
||||
|
||||
Reference in New Issue
Block a user