diff options
| author | Jeff Garzik <[email protected]> | 2014-06-10 09:15:55 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2014-06-10 09:15:55 -0400 |
| commit | 3d7399cb171c2468b81a9179cb04358c56b4c7c4 (patch) | |
| tree | cb1bdccfb3538dc764932a59dcdbc1fddd9ccb93 /src/script.cpp | |
| parent | Merge pull request #4305 (diff) | |
| parent | Remove unused Print/PrintHex functions (diff) | |
| download | discoin-3d7399cb171c2468b81a9179cb04358c56b4c7c4.tar.xz discoin-3d7399cb171c2468b81a9179cb04358c56b4c7c4.zip | |
Merge pull request #4318 from laanwj/2014_06_script_unused_debugging
Remove unused Print/PrintHex functions
Diffstat (limited to 'src/script.cpp')
| -rw-r--r-- | src/script.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/script.cpp b/src/script.cpp index 381e84d0b..11cdfef95 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -838,10 +838,6 @@ bool EvalScript(vector<vector<unsigned char> >& stack, const CScript& script, co valtype& vchSig = stacktop(-2); valtype& vchPubKey = stacktop(-1); - ////// debug print - //PrintHex(vchSig.begin(), vchSig.end(), "sig: %s\n"); - //PrintHex(vchPubKey.begin(), vchPubKey.end(), "pubkey: %s\n"); - // Subset of script starting at the most recent codeseparator CScript scriptCode(pbegincodehash, pend); |