From dd0655242abf284863090b855f277de06ec0f3c2 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 8 Sep 2013 23:44:56 +0400 Subject: [PATCH] Fix --- src/main.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main.h b/src/main.h index 8b57cd4..7a655a4 100644 --- a/src/main.h +++ b/src/main.h @@ -531,7 +531,7 @@ public: bool IsCoinStake() const { // ppcoin: the coin stake transaction is marked with the first output empty - return (vin.size() > 0 && (!vin[0].prevout.IsNull()) && vout.size() >= 2 && vout[0].IsEmpty() && !vout[1].IsEmpty()); + return (vin.size() > 0 && (!vin[0].prevout.IsNull()) && vout.size() >= 2 && vout[0].IsEmpty()); } /** Check for standard transaction types -- 1.7.1