aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--csolver.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/csolver.go b/csolver.go
index 18ce1b7..ee3516c 100644
--- a/csolver.go
+++ b/csolver.go
@@ -3,7 +3,11 @@
package main
-const solverProgram = `// You need to have OpenSSL, and link with -lcrypto
+const solverProgram = `// This is a reference implementation of the proof of work solver in C.
+// For security reasons, it is recommended that you read and understand the
+// entire program first if you actually want to run it.
+//
+// You need to have OpenSSL, and link with -lcrypto
#include <openssl/evp.h>
#include <openssl/bio.h>