Commit f447c7ce132045d719e3e0db42c891e01bfc0714

Con Kolivas 2014-03-10T13:32:18

Since the device runtime is now reset, the Raw hashrate entry in the cta API output is no longer meaningful.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/driver-cointerra.c b/driver-cointerra.c
index 31a339a..2291103 100644
--- a/driver-cointerra.c
+++ b/driver-cointerra.c
@@ -1082,8 +1082,6 @@ static struct api_data *cta_api_stats(struct cgpu_info *cgpu)
 	root = api_add_uint64(root, "Calc hashrate", &ghs, true);
 	ghs = (info->tot_hashes - info->tot_reset_hashes) / dev_runtime;
 	root = api_add_uint64(root, "Hashrate", &ghs, true);
-	ghs = info->tot_hashes / dev_runtime;
-	root = api_add_uint64(root, "Raw hashrate", &ghs, true);
 	ghs = info->tot_share_hashes / dev_runtime;
 	root = api_add_uint64(root, "Share hashrate", &ghs, true);
 	root = api_add_uint64(root, "Total calc hashes", &info->tot_calc_hashes, false);