| 775 | } |
| 776 | |
| 777 | static bool excluded(const struct utxo **excludes, |
| 778 | const struct utxo *utxo) |
| 779 | { |
| 780 | for (size_t i = 0; i < tal_count(excludes); i++) { |
| 781 | if (bitcoin_outpoint_eq(&excludes[i]->outpoint, &utxo->outpoint)) |
| 782 | return true; |
| 783 | } |
| 784 | return false; |
| 785 | } |
| 786 | |
| 787 | static bool deep_enough(u32 maxheight, const struct utxo *utxo, |
| 788 | u32 current_blockheight) |
no outgoing calls
no test coverage detected