diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-11-13 17:51:22 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-11-13 17:51:57 +0100 |
| commit | 6c5c06eff79550b1fa387fd2902f306172abad33 (patch) | |
| tree | c7948cc31213da42c23c74382f799e6690a5838f /src/script/standard.cpp | |
| parent | Merge pull request #5203 (diff) | |
| parent | Make comments in /src/script doxygen compatible (diff) | |
| download | discoin-6c5c06eff79550b1fa387fd2902f306172abad33.tar.xz discoin-6c5c06eff79550b1fa387fd2902f306172abad33.zip | |
Merge pull request #5252
b9a36b1 Make comments in /src/script doxygen compatible (Michael Ford)
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 |