diff options
| author | João Barbosa <[email protected]> | 2018-04-17 17:41:49 +0100 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2018-04-18 13:41:28 +0100 |
| commit | 6efd9644cfe31168db1841010cffa64dfe604e67 (patch) | |
| tree | 9f93e702513ace56eb40dbdfc8bf6176ad8b8050 /src/wallet/walletdb.cpp | |
| parent | Merge #12985: Windows: Avoid launching as admin when NSIS installer ends. (diff) | |
| download | discoin-6efd9644cfe31168db1841010cffa64dfe604e67.tar.xz discoin-6efd9644cfe31168db1841010cffa64dfe604e67.zip | |
refactor: Drop CWalletRef typedef
Diffstat (limited to 'src/wallet/walletdb.cpp')
| -rw-r--r-- | src/wallet/walletdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp index bcc7cf877..0e8a12ee9 100644 --- a/src/wallet/walletdb.cpp +++ b/src/wallet/walletdb.cpp @@ -756,7 +756,7 @@ void MaybeCompactWalletDB() return; } - for (CWalletRef pwallet : vpwallets) { + for (CWallet* pwallet : vpwallets) { WalletDatabase& dbh = pwallet->GetDBHandle(); unsigned int nUpdateCounter = dbh.nUpdateCounter; |