aboutsummaryrefslogtreecommitdiff
path: root/src/script.h
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2013-09-18 20:38:08 +1000
committerGavin Andresen <gavinandresen@gmail.com>2013-09-18 20:39:25 +1000
commit881a85a22d76c875f519cd54388a419ec6f70857 (patch)
tree3f71daa59ac35c5dda44747c0b62dbc8602d8f1c /src/script.h
parente51321fb75f00194425e5ecc8ad77fd6762ec221 (diff)
downloadbitcoin-881a85a22d76c875f519cd54388a419ec6f70857.tar.xz
Replace printf with LogPrintf / LogPrint
Diffstat (limited to 'src/script.h')
-rw-r--r--src/script.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script.h b/src/script.h
index 0ab47678e8..f5ed611548 100644
--- a/src/script.h
+++ b/src/script.h
@@ -560,7 +560,7 @@ public:
void PrintHex() const
{
- printf("CScript(%s)\n", HexStr(begin(), end(), true).c_str());
+ LogPrintf("CScript(%s)\n", HexStr(begin(), end(), true).c_str());
}
std::string ToString() const
@@ -588,7 +588,7 @@ public:
void print() const
{
- printf("%s\n", ToString().c_str());
+ LogPrintf("%s\n", ToString().c_str());
}
CScriptID GetID() const