| 210 | } |
| 211 | |
| 212 | bool isDust(interfaces::Node& node, const QString& address, const CAmount& amount) |
| 213 | { |
| 214 | CTxDestination dest = DecodeDestination(address.toStdString()); |
| 215 | CScript script = GetScriptForDestination(dest); |
| 216 | CTxOut txOut(amount, script); |
| 217 | return IsDust(txOut, node.getDustRelayFee()); |
| 218 | } |
| 219 | |
| 220 | QString HtmlEscape(const QString& str, bool fMultiLine) |
| 221 | { |
no test coverage detected