diff --git a/src/main.cpp b/src/main.cpp index 5a5c7df9b..0f458bb3a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -706,7 +706,10 @@ bool IsFinalTx(const CTransaction &tx, int nBlockHeight, int64_t nBlockTime) } BOOST_FOREACH(const CTxIn& txin, tx.vin) if (!txin.IsFinal()) + { + printf("non-final txin\n"); return false; + } return true; }