| 98 | } |
| 99 | |
| 100 | void ClientModel::updateTimer() |
| 101 | { |
| 102 | // no locking required at this point |
| 103 | // the following calls will acquire the required lock |
| 104 | Q_EMIT mempoolSizeChanged(m_node.getMempoolSize(), m_node.getMempoolDynamicUsage()); |
| 105 | Q_EMIT bytesChanged(m_node.getTotalBytesRecv(), m_node.getTotalBytesSent()); |
| 106 | } |
| 107 | |
| 108 | void ClientModel::updateNumConnections(int numConnections) |
| 109 | { |
nothing calls this directly
no test coverage detected