proposal_is_rbfable * * @brief returns true if the given proposal * would be RBFed if the output it is tracking * increases in depth without being spent. */
| 1052 | * increases in depth without being spent. |
| 1053 | */ |
| 1054 | static bool proposal_is_rbfable(const struct proposed_resolution *proposal) |
| 1055 | { |
| 1056 | /* Future onchain resolutions, such as anchored commitments, might |
| 1057 | * want to RBF as well. |
| 1058 | */ |
| 1059 | return proposal->tx_type == OUR_PENALTY_TX; |
| 1060 | } |
| 1061 | |
| 1062 | /** proposal_should_rbf |
| 1063 | * |
no outgoing calls
no test coverage detected