diff options
| author | Russell Yanofsky <[email protected]> | 2017-04-18 13:01:23 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2018-04-04 16:52:40 -0400 |
| commit | 3ec2ebcd9b4beb4277f1f4791c6acbc538784f70 (patch) | |
| tree | c86c3c7b5d346e6f2460426de31f753b949dd3e3 /src/qt/walletmodel.cpp | |
| parent | Remove direct bitcoin calls from qt/coincontroldialog.cpp (diff) | |
| download | discoin-3ec2ebcd9b4beb4277f1f4791c6acbc538784f70.tar.xz discoin-3ec2ebcd9b4beb4277f1f4791c6acbc538784f70.zip | |
Remove direct bitcoin calls from qt/addresstablemodel.cpp
Diffstat (limited to 'src/qt/walletmodel.cpp')
| -rw-r--r-- | src/qt/walletmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 8010b6097..06409ca29 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -49,7 +49,7 @@ WalletModel::WalletModel(std::unique_ptr<interface::Wallet> wallet, interface::N fHaveWatchOnly = m_wallet->haveWatchOnly(); fForceCheckBalanceChanged = false; - addressTableModel = new AddressTableModel(cwallet, this); + addressTableModel = new AddressTableModel(this); transactionTableModel = new TransactionTableModel(platformStyle, cwallet, this); recentRequestsTableModel = new RecentRequestsTableModel(cwallet, this); |