diff src/script.h @ 2096:ee92c87e9cb6 draft

Begin doxygen-compatible comments
author Pieter Wuille <pieter.wuille@gmail.com>
date Mon, 26 Mar 2012 16:48:23 +0200 (2012-03-26)
parents 20667468f95b
children a25079d308ca c68e3fa36257
line wrap: on
line diff
--- a/src/script.h
+++ b/src/script.h
@@ -15,6 +15,7 @@
 class CTransaction;
 class CKeyStore;
 
+/** Signature hash types/flags */
 enum
 {
     SIGHASH_ALL = 1,
@@ -36,6 +37,7 @@
 
 const char* GetTxnOutputType(txnouttype t);
 
+/** Script opcodes */
 enum opcodetype
 {
     // push value
@@ -212,7 +214,7 @@
 
 
 
-
+/** Serialized script, used inside transaction inputs and outputs */
 class CScript : public std::vector<unsigned char>
 {
 protected: