Skip to content

Commit 4901d75

Browse files
committed
[GUI] Dashboard, include owner cold stakes in the chart.
1 parent dc530c0 commit 4901d75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qt/transactionfilterproxy.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,11 @@ bool TransactionFilterProxy::isZcTx(int type) const {
162162
}
163163

164164
bool TransactionFilterProxy::isStakeTx(int type) const {
165-
return (type == TransactionRecord::StakeMint || type == TransactionRecord::Generated || type == TransactionRecord::StakeZPIV);
165+
return type == TransactionRecord::StakeMint || type == TransactionRecord::Generated || type == TransactionRecord::StakeZPIV || type == TransactionRecord::StakeDelegated;
166166
}
167167

168168
bool TransactionFilterProxy::isColdStake(int type) const {
169-
return (type == TransactionRecord::P2CSDelegation || type == TransactionRecord::P2CSDelegationSent || type == TransactionRecord::P2CSDelegationSentOwner || type == TransactionRecord::StakeDelegated || type == TransactionRecord::StakeHot);
169+
return type == TransactionRecord::P2CSDelegation || type == TransactionRecord::P2CSDelegationSent || type == TransactionRecord::P2CSDelegationSentOwner || type == TransactionRecord::StakeDelegated || type == TransactionRecord::StakeHot;
170170
}
171171

172172
/*QVariant TransactionFilterProxy::dataFromSourcePos(int sourceRow, int role) const {

0 commit comments

Comments
 (0)