From dd8de4b0cb2c62ab57356652af72f1638570763a Mon Sep 17 00:00:00 2001 From: Sunny King Date: Mon, 30 Apr 2012 18:59:20 +0100 Subject: [PATCH] PPCoin: Remove redundant check condition in IsCoinStake() --- src/main.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main.h b/src/main.h index 2790201..1d8dc96 100644 --- a/src/main.h +++ b/src/main.h @@ -510,7 +510,7 @@ public: bool IsCoinStake() const { // ppcoin: the coin stake transaction is marked with the first output empty - return ((!IsCoinBase()) && vout.size() == 2 && vout[0].IsEmpty()); + return (vout.size() == 2 && vout[0].IsEmpty()); } int GetSigOpCount() const -- 1.7.1