Since the device runtime is now reset, the Raw hashrate entry in the cta API output is no longer meaningful.
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);