Skip to content

Commit

Permalink
feat: idea for xmrig benchmarks and change color timeout to red
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrix126 committed Oct 31, 2024
1 parent 812c7f5 commit a58c7e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 4 additions & 2 deletions IDEAS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Some ideas could be done in a matter of hours, some could take months.
Github is proprietary. If Gupaxx aims to be free, it should not be only available on this platform and we should explore options to get github free.
We can use [Radicle](https://radicle.xyz/) to get Gupaxx on a p2p collaboration stack.
The code, issues and PR could be synchronized with Github.
### Integrate a P2Pool compatible Nodes crawler
To get rid of integrating nodes list, we can include a crawler like monero.fail inside Gupaxx.
### Integrate a Monero Node
[Done](https://github.com/Cyrix126/releases/tag/v1.5.0)
If we want Gupaxx to help user mine in the most decentralized way, we should offer them to run a monero node.
This would be optional and would check if the requirement are fulfilled before enabling the button to do so.
### Integrate a P2Pool compatible Nodes crawler
To get rid of integrating nodes list, we can include a crawler like monero.fail inside Gupaxx.

## More User friendly
### Website
Expand Down Expand Up @@ -85,6 +85,8 @@ Option to launch Gupaxx at startup
To make the Algorithm controllable outside of Gupaxx.
### Graphs history of HR
The user could see how the HR was given on p2pool and XvB.
### Update xmrig benchmark from Gupaxx
To have the latest benchmark from xmrig, but still including one by default. Also automates the inclusion on release
### Manually set HR for XvB algo
Done by [Sina](https://github.com/mostafaei2002) [PR](https://github.com/Cyrix126/gupaxx/pull/11)
An advanced tab on XvB tab with multiple tools to set the HR manually.
Expand Down
6 changes: 2 additions & 4 deletions src/components/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ impl Ping {
// <300ms = GREEN
// >300ms = YELLOW
// >500ms = RED
// timeout = BLACK
// timeout = RED
// default = GRAY
#[cold]
#[inline(never)]
Expand Down Expand Up @@ -450,10 +450,8 @@ impl Ping {
GREEN
} else if ms < RED_NODE_PING {
YELLOW
} else if ms < TIMEOUT_NODE_PING {
RED
} else {
BLACK
RED
};

let mut ping = ping.lock().unwrap();
Expand Down

0 comments on commit a58c7e2

Please sign in to comment.