This commit is contained in:
janko33bd
2017-12-21 23:07:41 +01:00
parent 7b90059a42
commit 3ae2d2aacc

View File

@@ -122,7 +122,7 @@ bool IsStandardTx(const CTransaction& tx, std::string& reason)
else if ((whichType == TX_MULTISIG) && (!fIsBareMultisigStd)) {
reason = "bare-multisig";
return false;
} else if (txout.IsDust(::minRelayTxFee)) {
} else if (txout.nValue == 0) {
reason = "dust";
return false;
}