| 1124 | }; |
| 1125 | |
| 1126 | CPubKey GetDestinationBlindingKey(const CTxDestination& dest) { |
| 1127 | return std::visit(BlindingPubkeyVisitor(), dest); |
| 1128 | } |
| 1129 | |
| 1130 | bool IsBlindDestination(const CTxDestination& dest) { |
| 1131 | return GetDestinationBlindingKey(dest).IsFullyValid(); |
no test coverage detected