Skip to content

Commit

Permalink
wallet.h
Browse files Browse the repository at this point in the history
line 1055
  • Loading branch information
notareeldev committed Aug 17, 2018
1 parent c63cb6e commit 805d75f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet.h
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ class CWalletTx : public CMerkleTx
const CTxIn vin = CTxIn(hashTx, i);

if (pwallet->IsSpent(hashTx, i) || pwallet->IsLockedCoin(hashTx, i)) continue;
if (fMasterNode && vout[i].nValue == 6500 * COIN) continue; // do not count MN-like outputs
if (fMasterNode && vout[i].nValue == 65000 * COIN) continue; // do not count MN-like outputs

const int rounds = pwallet->GetInputObfuscationRounds(vin);
if (rounds >= -2 && rounds < nZeromintPercentage) {
Expand Down

0 comments on commit 805d75f

Please sign in to comment.