diff options
| author | Russell Yanofsky <[email protected]> | 2018-03-23 17:14:39 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2018-04-04 16:52:40 -0400 |
| commit | 3cab2ce5f9e159ad5a2e9ed682f28121b5248580 (patch) | |
| tree | 950fa12e412b37d37e9df5e0487b70ee162c6ea6 /src/qt/walletmodel.cpp | |
| parent | Remove direct bitcoin calls from qt/addresstablemodel.cpp (diff) | |
| download | discoin-3cab2ce5f9e159ad5a2e9ed682f28121b5248580.tar.xz discoin-3cab2ce5f9e159ad5a2e9ed682f28121b5248580.zip | |
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 06409ca29..79e1c834d 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 |