| 839 | } |
| 840 | |
| 841 | static const char *recurrence_time_unit_name(u8 time_unit) |
| 842 | { |
| 843 | /* BOLT-recurrence #12: |
| 844 | * `time_unit` defining 0 (seconds), 1 (days), 2 (months). |
| 845 | */ |
| 846 | switch (time_unit) { |
| 847 | case 0: |
| 848 | return "seconds"; |
| 849 | case 1: |
| 850 | return "days"; |
| 851 | case 2: |
| 852 | return "months"; |
| 853 | } |
| 854 | return NULL; |
| 855 | } |
| 856 | |
| 857 | static bool json_add_utf8(struct json_stream *js, |
| 858 | const char *fieldname, |
no outgoing calls
no test coverage detected