| 742 | } |
| 743 | |
| 744 | void TransactionTableModel::subscribeToCoreSignals() |
| 745 | { |
| 746 | // Connect signals to wallet |
| 747 | m_handler_transaction_changed = walletModel->wallet().handleTransactionChanged(boost::bind(NotifyTransactionChanged, this, _1, _2)); |
| 748 | m_handler_show_progress = walletModel->wallet().handleShowProgress(boost::bind(ShowProgress, this, _1, _2)); |
| 749 | } |
| 750 | |
| 751 | void TransactionTableModel::unsubscribeFromCoreSignals() |
| 752 | { |
nothing calls this directly
no test coverage detected