| 2604 | } |
| 2605 | |
| 2606 | void ReserveDestination::SetBlindingPubKey(const CPubKey& blinding_pubkey, CTxDestination& dest) |
| 2607 | { |
| 2608 | std::visit(SetBlindingPubKeyVisitor(blinding_pubkey), address); |
| 2609 | dest = address; |
| 2610 | } |
| 2611 | |
| 2612 | void ReserveDestination::KeepDestination() |
| 2613 | { |
no test coverage detected