Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
xenartist committed Dec 6, 2024
2 parents 94205f6 + 5286ed6 commit 2ef78e0
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 @@ -26,6 +26,7 @@ var GPUAlgorithms = []string{
"Blake3 (GPU>4GB)",
"Etchash (GPU>4GB)",
"Nexapow (GPU>4GB)",
"Autolykos (GPU>4GB)",
"KarlsenHash (GPU>3GB)",
}

Expand Down Expand Up @@ -61,6 +62,9 @@ func StartMining(app *tview.Application, logView *tview.TextView, logMessage uti
case "Nexapow (GPU>4GB)":
algorithm = "NEXA"
host = "nexapow.unmineable.com"
case "Autolykos (GPU>4GB)":
algorithm = "AUTOLYKOS2"
host = "autolykos.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 (5.1.0)", "", 0, nil).
AddItem("unmineable-solXEN (5.2.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 2ef78e0

Please sign in to comment.