Skip to content

Commit dd06552

Browse files
alexalex
alex
authored and
alex
committed
Fix
1 parent af1b5b2 commit dd06552

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ class CTransaction
531531
bool IsCoinStake() const
532532
{
533533
// ppcoin: the coin stake transaction is marked with the first output empty
534-
return (vin.size() > 0 && (!vin[0].prevout.IsNull()) && vout.size() >= 2 && vout[0].IsEmpty() && !vout[1].IsEmpty());
534+
return (vin.size() > 0 && (!vin[0].prevout.IsNull()) && vout.size() >= 2 && vout[0].IsEmpty());
535535
}
536536

537537
/** Check for standard transaction types

0 commit comments

Comments
 (0)