diff --git a/src/policy/policy.cpp b/src/policy/policy.cpp index 6a5750584..0a73aeb35 100644 --- a/src/policy/policy.cpp +++ b/src/policy/policy.cpp @@ -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; }