| 550 | } |
| 551 | |
| 552 | bool json_to_sat(const char *buffer, const jsmntok_t *tok, |
| 553 | struct amount_sat *sat) |
| 554 | { |
| 555 | return parse_amount_sat(sat, buffer + tok->start, tok->end - tok->start); |
| 556 | } |
| 557 | |
| 558 | bool json_to_sat_or_all(const char *buffer, const jsmntok_t *tok, |
| 559 | struct amount_sat *sat) |
no test coverage detected