Remove unused Print/PrintHex functions

You can just use HexStr(script) or script.ToString() for debugging, no
need for these extra functions.
This commit is contained in:
Wladimir J. van der Laan 2014-06-10 15:01:23 +02:00
parent 588fb4e82f
commit 6dd5edb7de
No known key found for this signature in database
GPG key ID: 74810B012346C9A6
3 changed files with 0 additions and 26 deletions

View file

@ -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);