mirror of
https://github.com/hinto-janai/gupax.git
synced 2024-11-17 09:47:36 +00:00
helper: fix [XMR per ...] stat
It was using the [payouts] variable as a base instead of [xmr].
This commit is contained in:
parent
8f8c37ec57
commit
813a59353e
2 changed files with 3 additions and 3 deletions
|
@ -530,7 +530,7 @@ Gupax itself uses around 100-300 megabytes of memory.
|
|||
|
||||
Gupax also holds up to [500,000 bytes](https://github.com/hinto-janaiyo/gupax/blob/2b80aa027728ddd193bac2e77caa5ddb4323f8fd/src/helper.rs#L63) of log data from `P2Pool/XMRig` to display in the GUI terminals. These logs are reset once over capacity which takes around 1-2 hours.
|
||||
|
||||
Memory usage should *never* be above 400~ megabytes. If you see Gupax using more than this, please send a bug report.
|
||||
Memory usage should *never* be above 500~ megabytes. If you see Gupax using more than this, please send a bug report.
|
||||
|
||||
---
|
||||
|
||||
|
|
|
@ -1406,8 +1406,8 @@ impl PubP2poolApi {
|
|||
// Total XMR
|
||||
let per_sec = xmr / elapsed_as_secs_f64;
|
||||
let xmr_hour = (per_sec * 60.0) * 60.0;
|
||||
let xmr_day = payouts_hour * 24.0;
|
||||
let xmr_month = payouts_day * 30.0;
|
||||
let xmr_day = xmr_hour * 24.0;
|
||||
let xmr_month = xmr_day * 30.0;
|
||||
|
||||
// 6. Mutate the struct with the new info
|
||||
let mut public = public.lock().unwrap();
|
||||
|
|
Loading…
Reference in a new issue