diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2018-03-23 17:14:39 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-04 16:52:40 -0400 |
commit | 3cab2ce5f9e159ad5a2e9ed682f28121b5248580 (patch) | |
tree | 950fa12e412b37d37e9df5e0487b70ee162c6ea6 /src/qt/walletmodel.cpp | |
parent | 3ec2ebcd9b4beb4277f1f4791c6acbc538784f70 (diff) |
Remove direct bitcoin calls from qt/paymentserver.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 06409ca29f..79e1c834df 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -295,7 +295,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran } } } - Q_EMIT coinsSent(cwallet, rcp, transaction_array); + Q_EMIT coinsSent(this, rcp, transaction_array); } checkBalanceChanged(m_wallet->getBalances()); // update balance immediately, otherwise there could be a short noticeable delay until pollBalanceChanged hits |