Skip to content

Commit

Permalink
output message improved, compile warning fixed, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyFFM committed Nov 5, 2018
1 parent 42450ad commit 1e62319
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "engraver"
version = "2.0.4"
version = "2.0.5"
license = "GPL-3.0"
authors = ["PoC Consortium <bots@cryptoguru.org>"]
description = """
Expand Down
1 change: 0 additions & 1 deletion src/c/noncegen_32.c
Expand Up @@ -16,7 +16,6 @@ void noncegen(char *cache, const size_t cache_size, const size_t chunk_offset,
const unsigned long long numeric_id, const unsigned long long local_startnonce,
const unsigned long long local_nonces) {
unsigned long long nonce;
size_t len;

char seed[32]; // 64bit numeric account ID, 64bit nonce (blank), 1bit termination, 127 bits zero
char term[32]; // 1bit 1, 255bit of zeros
Expand Down
6 changes: 5 additions & 1 deletion src/plotter.rs
Expand Up @@ -201,7 +201,11 @@ impl Plotter {
}

if !task.quiet {
println!("Starting from nonce: {}\n", progress);
if progress == 0 {
println!("Starting plotting...\n");
} else {
println!("Resuming plotting from nonce offset {}...\n", progress);
}
}

// determine buffer size
Expand Down

0 comments on commit 1e62319

Please sign in to comment.