diff options
| author | Michael Ford <[email protected]> | 2014-11-10 14:40:01 +0800 |
|---|---|---|
| committer | Michael Ford <[email protected]> | 2014-11-10 14:51:55 +0800 |
| commit | b9a36b15bff6a6fc0bb7f8bf6e7361dac3919e78 (patch) | |
| tree | 634c74ffe9f7240938d1079c0106a2e2e82ddbc7 /src/script/standard.cpp | |
| parent | Merge pull request #5210 (diff) | |
| download | discoin-b9a36b15bff6a6fc0bb7f8bf6e7361dac3919e78.tar.xz discoin-b9a36b15bff6a6fc0bb7f8bf6e7361dac3919e78.zip | |
Make comments in /src/script doxygen compatible
Diffstat (limited to 'src/script/standard.cpp')
| -rw-r--r-- | src/script/standard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/standard.cpp b/src/script/standard.cpp index e238ecedb..ab6e6cde0 100644 --- a/src/script/standard.cpp +++ b/src/script/standard.cpp @@ -34,9 +34,9 @@ const char* GetTxnOutputType(txnouttype t) return NULL; } -// -// Return public keys or hashes from scriptPubKey, for 'standard' transaction types. -// +/** + * Return public keys or hashes from scriptPubKey, for 'standard' transaction types. + */ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, vector<vector<unsigned char> >& vSolutionsRet) { // Templates |