| 240 | } |
| 241 | |
| 242 | bool isDust(interfaces::Node& node, const QString& address, const CAmount& amount) |
| 243 | { |
| 244 | CTxDestination dest = DecodeDestination(address.toStdString()); |
| 245 | CScript script = GetScriptForDestination(dest); |
| 246 | CTxOut txOut(CAsset(), amount, script); |
| 247 | return IsDust(txOut, node.getDustRelayFee()); |
| 248 | } |
| 249 | |
| 250 | QString HtmlEscape(const QString& str, bool fMultiLine) |
| 251 | { |
no test coverage detected