| 749 | } |
| 750 | |
| 751 | void TransactionTableModel::subscribeToCoreSignals() |
| 752 | { |
| 753 | // Connect signals to wallet |
| 754 | m_handler_transaction_changed = walletModel->wallet().handleTransactionChanged(std::bind(&TransactionTablePriv::NotifyTransactionChanged, priv, std::placeholders::_1, std::placeholders::_2)); |
| 755 | m_handler_show_progress = walletModel->wallet().handleShowProgress([this](const std::string&, int progress) { |
| 756 | priv->m_loading = progress < 100; |
| 757 | priv->DispatchNotifications(); |
| 758 | }); |
| 759 | } |
| 760 | |
| 761 | void TransactionTableModel::unsubscribeFromCoreSignals() |
| 762 | { |
nothing calls this directly
no test coverage detected