Skip to content

Commit

Permalink
removing the opencl plugin and fix hiveos integration
Browse files Browse the repository at this point in the history
  • Loading branch information
wam-rd committed Nov 25, 2023
1 parent 1887d5a commit f761f1c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "karlsen-miner"
version = "0.0.1-GPU-0.1"
version = "0.0.3-GPU-0.1"
edition = "2021"
license = "MIT/Apache-2.0"
authors = ["Elichai <elichai.turkel@gmail.com>"]
Expand Down
4 changes: 2 additions & 2 deletions integrations/hiveos/createmanifest.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
####################################################################################
###
### karlsen-miner
### https://github.com/tmrlvi/karlsen-miner/releases
### https://github.com/karlsen-network/karlsen-miner/releases
###
### Hive integration: Merlin
###
Expand All @@ -16,7 +16,7 @@ cat > h-manifest.conf << EOF
####################################################################################
###
### karlsen-miner
### https://github.com/tmrlvi/karlsen-miner/releases
### https://github.com/karlsen-network/karlsen-miner/releases
###
### Hive integration: Merlin
###
Expand Down
2 changes: 1 addition & 1 deletion integrations/hiveos/h-config.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
####################################################################################
###
### karlsen-miner
### https://github.com/tmrlvi/karlsen-miner/releases
### https://github.com/karlsen-network/karlsen-miner/releases
###
### Hive integration: Merlin
###
Expand Down
2 changes: 1 addition & 1 deletion integrations/hiveos/h-run.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
####################################################################################
###
### karlsen-miner
### https://github.com/tmrlvi/karlsen-miner/releases
### https://github.com/karlsen-network/karlsen-miner/releases
###
### Hive integration: Merlin
###
Expand Down
2 changes: 1 addition & 1 deletion integrations/hiveos/h-stats.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
####################################################################################
###
### karlsen-miner
### https://github.com/tmrlvi/karlsen-miner/releases
### https://github.com/karlsen-network/karlsen-miner/releases
###
### Hive integration: Merlin
###
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub struct Opt {
#[clap(long = "devfund-percent", help = "The percentage of blocks to send to the devfund (minimum 0%)", default_value = "0", parse(try_from_str = parse_devfund_percent))]
pub devfund_percent: u16,

#[clap(short, long, help = "karlsend port [default: Mainnet = 16110, Testnet = 16211]")]
#[clap(short, long, help = "karlsend port [default: Mainnet = 42110, Testnet = 16211]")]
port: Option<u16>,

#[clap(long, help = "Use testnet instead of mainnet [default: false]")]
Expand Down
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ mod pow;
mod target;
mod watch;

const WHITELIST: [&str; 4] = ["libkaspacuda", "libkaspaopencl", "kaspacuda", "kaspaopencl"];
//remove the opencl plugin support for the moment
//const WHITELIST: [&str; 4] = ["libkaspacuda", "libkaspaopencl", "kaspacuda", "kaspaopencl"];
const WHITELIST: [&str; 2] = ["libkaspacuda", "kaspacuda"];

pub mod proto {
#![allow(clippy::derive_partial_eq_without_eq)]
Expand Down

0 comments on commit f761f1c

Please sign in to comment.