Commit 53c9cdaf56178d3e38022d37a59e61f85b3cf8de

Con Kolivas 2012-12-02T16:56:36

scrypt_diff now returns a uint64_t

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index 018a97f..09e2292 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -2262,7 +2262,7 @@ static uint64_t share_diff(const struct work *work)
 	return ret;
 }
 
-static uint32_t scrypt_diff(const struct work *work)
+static uint64_t scrypt_diff(const struct work *work)
 {
 	const uint64_t scrypt_diffone = 0x0000ffff00000000ul;
 	uint64_t d64 = work->outputhash, ret;