diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-03-26 16:48:23 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-03-26 16:48:23 +0200 |
commit | 6b8de05d0a6696dff4b7dccec5b74889f3cdc486 (patch) | |
tree | 123b892a842e3a99342cc4806b4a833b2a635b52 /src/script.h | |
parent | 01a196e08db49d83cf6c5abd8a799c56dcfef503 (diff) |
Begin doxygen-compatible comments
Diffstat (limited to 'src/script.h')
-rw-r--r-- | src/script.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/script.h b/src/script.h index 46f2d31bbc..524d08b3ec 100644 --- 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 @@ enum txnouttype const char* GetTxnOutputType(txnouttype t); +/** Script opcodes */ enum opcodetype { // push value @@ -212,7 +214,7 @@ inline std::string StackString(const std::vector<std::vector<unsigned char> >& v - +/** Serialized script, used inside transaction inputs and outputs */ class CScript : public std::vector<unsigned char> { protected: |