aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-04-17 17:41:49 +0100
committerJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-04-18 13:41:28 +0100
commit6efd9644cfe31168db1841010cffa64dfe604e67 (patch)
tree9f93e702513ace56eb40dbdfc8bf6176ad8b8050 /src/wallet/wallet.cpp
parent615f7c288414a89cd1dec1d67e0f84abe2fb4c6d (diff)
downloadbitcoin-6efd9644cfe31168db1841010cffa64dfe604e67.tar.xz
refactor: Drop CWalletRef typedef
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 45c85a7912..dcf566c1e2 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -33,7 +33,7 @@
#include <boost/algorithm/string/replace.hpp>
-std::vector<CWalletRef> vpwallets;
+std::vector<CWallet*> vpwallets;
/** Transaction fee set by the user */
CFeeRate payTxFee(DEFAULT_TRANSACTION_FEE);
unsigned int nTxConfirmTarget = DEFAULT_TX_CONFIRM_TARGET;