diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2017-04-18 13:01:23 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-04 16:52:40 -0400 |
commit | 3ec2ebcd9b4beb4277f1f4791c6acbc538784f70 (patch) | |
tree | c86c3c7b5d346e6f2460426de31f753b949dd3e3 /src/qt/walletmodel.cpp | |
parent | 827de038ab6fa58aa3d46151eb2f8dc6add7743e (diff) |
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 8010b6097e..06409ca29f 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); |