aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/node.cpp
diff options
context:
space:
mode:
authorJoão Barbosa <[email protected]>2018-04-17 17:41:49 +0100
committerJoão Barbosa <[email protected]>2018-04-18 13:41:28 +0100
commit6efd9644cfe31168db1841010cffa64dfe604e67 (patch)
tree9f93e702513ace56eb40dbdfc8bf6176ad8b8050 /src/interfaces/node.cpp
parentMerge #12985: Windows: Avoid launching as admin when NSIS installer ends. (diff)
downloaddiscoin-6efd9644cfe31168db1841010cffa64dfe604e67.tar.xz
discoin-6efd9644cfe31168db1841010cffa64dfe604e67.zip
refactor: Drop CWalletRef typedef
Diffstat (limited to 'src/interfaces/node.cpp')
-rw-r--r--src/interfaces/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/node.cpp b/src/interfaces/node.cpp
index 919748f94..6d49117de 100644
--- a/src/interfaces/node.cpp
+++ b/src/interfaces/node.cpp
@@ -239,7 +239,7 @@ class NodeImpl : public Node
{
#ifdef ENABLE_WALLET
std::vector<std::unique_ptr<Wallet>> wallets;
- for (CWalletRef wallet : ::vpwallets) {
+ for (CWallet* wallet : ::vpwallets) {
wallets.emplace_back(MakeWallet(*wallet));
}
return wallets;