| 128 | return a.stack_index < b.stack_index; |
| 129 | } |
| 130 | static bool APIOutputEqualStackIndex(const api::Output &a, const api::Output &b) { |
| 131 | return a.stack_index == b.stack_index; |
| 132 | } |
| 133 | |
| 134 | void TransactionBuilder::add_input(const std::vector<api::Output> &mix_outputs, size_t real_output_index) { |
| 135 | m_input_descs.push_back(InputDesc{mix_outputs, real_output_index}); |
nothing calls this directly
no outgoing calls
no test coverage detected