-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix error checking solution difficulty against target
- Loading branch information
1 parent
8669c24
commit 41405bc
Showing
9 changed files
with
40 additions
and
40 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_miner" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Mining software for Grin, supports CPU and CUDA GPUs." | ||
build = "src/build/build.rs" | ||
|
@@ -32,14 +32,14 @@ slog = { version = "~2.1", features = ["max_level_trace", "release_max_level_tra | |
term = "0.4" | ||
time = "0.1" | ||
|
||
grin_miner_util = { path = "./util", version = "1.0.1" } | ||
grin_miner_plugin = { path = "./plugin", version = "1.0.1" } | ||
grin_miner_config = { path = "./config", version = "1.0.1" } | ||
cuckoo_miner = { path = "./cuckoo-miner", version = "1.0.1" } | ||
grin_miner_util = { path = "./util", version = "1.0.2" } | ||
grin_miner_plugin = { path = "./plugin", version = "1.0.2" } | ||
grin_miner_config = { path = "./config", version = "1.0.2" } | ||
cuckoo_miner = { path = "./cuckoo-miner", version = "1.0.2" } | ||
#use this alternative inclusion below to build cuda plugins | ||
#cuckoo_miner = { path = "./cuckoo-miner", version = "1.0.1", features = ["build-cuda-plugins"]} | ||
ocl_cuckatoo = { path = "./ocl_cuckatoo", version = "1.0.1", optional = true} | ||
ocl_cuckaroo = { path = "./ocl_cuckaroo", version = "1.0.1", optional = true} | ||
#cuckoo_miner = { path = "./cuckoo-miner", version = "1.0.2", features = ["build-cuda-plugins"]} | ||
ocl_cuckatoo = { path = "./ocl_cuckatoo", version = "1.0.2", optional = true} | ||
ocl_cuckaroo = { path = "./ocl_cuckaroo", version = "1.0.2", optional = true} | ||
|
||
[dependencies.cursive] | ||
version = "0.9.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_miner_config" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Configuration handling for the grin miner" | ||
license = "Apache-2.0" | ||
|
@@ -13,6 +13,6 @@ serde_derive = "1" | |
toml = "0.4" | ||
dirs = "1.0" | ||
|
||
cuckoo_miner = { path = "../cuckoo-miner", version = "1.0.1" } | ||
cuckoo_miner = { path = "../cuckoo-miner", version = "1.0.2" } | ||
slog = { version = "~2.1", features = ["max_level_trace", "release_max_level_trace"] } | ||
grin_miner_util = { path = "../util", version = "1.0.1" } | ||
grin_miner_util = { path = "../util", version = "1.0.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_miner_plugin" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
repository = "https://github.com/mimblewimble/grin-miner" | ||
description = "Device specific plugins for the grin miner" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_miner_util" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Utilities for the grin miner" | ||
repository = "https://github.com/mimblewimble/grin-miner" | ||
|