| 2682 | |
| 2683 | template <class T> |
| 2684 | PrecomputedTransactionData::PrecomputedTransactionData(const T& txTo) |
| 2685 | : PrecomputedTransactionData(uint256{}) |
| 2686 | { |
| 2687 | Init(txTo, {}); |
| 2688 | } |
| 2689 | |
| 2690 | // explicit instantiation |
| 2691 | template void PrecomputedTransactionData::Init(const CTransaction& txTo, std::vector<CTxOut>&& spent_outputs, bool force); |
nothing calls this directly
no test coverage detected