From fbdd7dde3310dac3ddba111caf99fc35f93f772d Mon Sep 17 00:00:00 2001 From: jl777 Date: Sun, 4 Mar 2018 10:02:44 +0200 Subject: [PATCH] Test --- src/script/interpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp index 632c954af..52ec4f899 100644 --- a/src/script/interpreter.cpp +++ b/src/script/interpreter.cpp @@ -1130,7 +1130,7 @@ bool TransactionSignatureChecker::CheckLockTime(const CScriptNum& nLockTime) con // comparison is a simple numeric one. if (nLockTime > (int64_t)txTo->nLockTime) { - fprintf(stderr,"CLTV error: nLockTime %u > %u txTo->nLockTime\n",(uint32_t)(int64_t)nLockTime,(uint32_t)txTo->nLockTime); + fprintf(stderr,"CLTV error: nLockTime %llu > %u txTo->nLockTime\n",nLockTime,(uint32_t)txTo->nLockTime); return false; }