A payment is finished if a) it is in a final state, of b) it's in a * child-spawning state and all of its children are in a final state. */
| 2043 | /* A payment is finished if a) it is in a final state, of b) it's in a |
| 2044 | * child-spawning state and all of its children are in a final state. */ |
| 2045 | static bool payment_is_success(struct payment *p) |
| 2046 | { |
| 2047 | return (payment_aggregate_states(p) & PAYMENT_STEP_SUCCESS) != 0; |
| 2048 | } |
| 2049 | |
| 2050 | /* Function to bubble up completions to the root, which actually holds on to |
| 2051 | * the command that initiated the flow. */ |
no test coverage detected