diff options
| author | MarcoFalke <[email protected]> | 2019-01-05 12:02:12 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-01-05 16:16:37 +0100 |
| commit | fa2510d5c1cdf9c2cd5cc9887302ced4378c7202 (patch) | |
| tree | 616492efb0b268d8e37ba57bda813aaacc66c975 /src/qt/walletmodel.cpp | |
| parent | Merge #12151: rpc: Remove cs_main lock from blockToJSON and blockheaderToJSON (diff) | |
| download | discoin-fa2510d5c1cdf9c2cd5cc9887302ced4378c7202.tar.xz discoin-fa2510d5c1cdf9c2cd5cc9887302ced4378c7202.zip | |
Use C++11 default member initializers
Diffstat (limited to 'src/qt/walletmodel.cpp')
| -rw-r--r-- | src/qt/walletmodel.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index ba16fdd5e..9cd0fed7d 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -40,8 +40,6 @@ WalletModel::WalletModel(std::unique_ptr<interfaces::Wallet> wallet, interfaces: cachedNumBlocks(0) { fHaveWatchOnly = m_wallet->haveWatchOnly(); - fForceCheckBalanceChanged = false; - addressTableModel = new AddressTableModel(this); transactionTableModel = new TransactionTableModel(platformStyle, this); recentRequestsTableModel = new RecentRequestsTableModel(this); |