| 50 | } |
| 51 | |
| 52 | bool IsDust(const CTxOut& txout, const CFeeRate& dustRelayFeeIn) |
| 53 | { |
| 54 | return (txout.nValue < GetDustThreshold(txout, dustRelayFeeIn)); |
| 55 | } |
| 56 | |
| 57 | bool IsStandard(const CScript& scriptPubKey, txnouttype& whichType) |
| 58 | { |
no test coverage detected