| 350 | } |
| 351 | |
| 352 | static void MaybePushAddress(UniValue & entry, const CTxDestination &dest) |
| 353 | { |
| 354 | if (IsValidDestination(dest)) { |
| 355 | entry.pushKV("address", EncodeDestination(dest)); |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | /** |
| 360 | * List transactions based on the given criteria. |
no test coverage detected