diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-08-22 09:31:27 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-08-22 09:31:44 +0200 |
| commit | 4b65fa592123f3715d7ba878fc3f5110430c4b21 (patch) | |
| tree | dbd55eb52cf6f931e84fd3f61e24e39ff57bf054 /src/script/standard.cpp | |
| parent | Merge #11050: Avoid treating null RPC arguments different from missing arguments (diff) | |
| parent | Comments: More comments on functions/globals in standard.h. (diff) | |
| download | discoin-4b65fa592123f3715d7ba878fc3f5110430c4b21.tar.xz discoin-4b65fa592123f3715d7ba878fc3f5110430c4b21.zip | |
Merge #11058: Comments: More comments on functions/globals in standard.h.
360b464 Comments: More comments on functions/globals in standard.h. (Jim Posen)
Pull request description:
I was confused about what "data carrier" meant, so I wanted to comment the `fAcceptDatacarrier` and `nMaxDatacarrierBytes` fields specifically. Then I figured I'd add docs for the rest of the functions.
Tree-SHA512: e6d0cfe6f4a2ab52ae76f984b1f5d8de371ae938e7832be8b02517d868f1caea62fec8888c917a2bd3d8ef74025de7f00dc96923fa56436dc6b190626652bf29
Diffstat (limited to 'src/script/standard.cpp')
| -rw-r--r-- | src/script/standard.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/script/standard.cpp b/src/script/standard.cpp index 0f720d9e7..2aed39392 100644 --- a/src/script/standard.cpp +++ b/src/script/standard.cpp @@ -34,9 +34,6 @@ const char* GetTxnOutputType(txnouttype t) return nullptr; } -/** - * Return public keys or hashes from scriptPubKey, for 'standard' transaction types. - */ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, std::vector<std::vector<unsigned char> >& vSolutionsRet) { // Templates |