Commit 9f62797099472a2929f0a9482c5245dd90f61a0b

Con Kolivas 2014-02-05T21:28:38

Add no matching work to hfa API output.

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/driver-hashfast.c b/driver-hashfast.c
index aa58e51..2d14adf 100644
--- a/driver-hashfast.c
+++ b/driver-hashfast.c
@@ -1365,6 +1365,7 @@ static struct api_data *hfa_api_stats(struct cgpu_info *cgpu)
 
 	root = api_add_uint64(root, "raw hashcount", &info->raw_hashes, false);
 	root = api_add_uint64(root, "calc hashcount", &info->calc_hashes, false);
+	root = api_add_int(root, "no matching work", &info->no_matching_work, false);
 	root = api_add_int(root, "resets", &info->resets, false);
 
 	return root;