Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
xenartist committed Nov 30, 2024
2 parents 658d611 + 0943fa0 commit 94205f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lol/miner.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ var GPUAlgorithms = []string{
"Ethash (GPU>6GB)",
"Blake3 (GPU>4GB)",
"Etchash (GPU>4GB)",
"Nexapow (GPU>4GB)",
"KarlsenHash (GPU>3GB)",
}

Expand Down Expand Up @@ -57,6 +58,9 @@ func StartMining(app *tview.Application, logView *tview.TextView, logMessage uti
case "Etchash (GPU>4GB)":
algorithm = "ETCHASH"
host = "etchash.unmineable.com"
case "Nexapow (GPU>4GB)":
algorithm = "NEXA"
host = "nexapow.unmineable.com"
case "FishHash (GPU>6GB)":
algorithm = "FISHHASH"
host = "fishhash.unmineable.com"
Expand Down
2 changes: 1 addition & 1 deletion ui/menu.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

func CreateMainMenu() *tview.List {
mainMenu := tview.NewList().
AddItem("unmineable-solXEN (4.0.0)", "", 0, nil).
AddItem("unmineable-solXEN (5.1.0)", "", 0, nil).
AddItem(WALLET_STRING, "", 'a', nil).
AddItem(SOLXEN_CPU_MINER_STRING, "", 'b', func() {
UpdateCPUMinerPublicKeyTextView() // Update the Public Key text view
Expand Down

0 comments on commit 94205f6

Please sign in to comment.