| 1145 | } |
| 1146 | |
| 1147 | void RPCConsole::setTrafficGraphRange(int mins) |
| 1148 | { |
| 1149 | ui->trafficGraph->setGraphRange(std::chrono::minutes{mins}); |
| 1150 | ui->lblGraphRange->setText(GUIUtil::formatDurationStr(std::chrono::minutes{mins})); |
| 1151 | } |
| 1152 | |
| 1153 | void RPCConsole::updateTrafficStats(quint64 totalBytesIn, quint64 totalBytesOut) |
| 1154 | { |
nothing calls this directly
no test coverage detected