| 555 | } |
| 556 | |
| 557 | bool json_to_sat(const char *buffer, const jsmntok_t *tok, |
| 558 | struct amount_sat *sat) |
| 559 | { |
| 560 | return parse_amount_sat(sat, buffer + tok->start, tok->end - tok->start); |
| 561 | } |
| 562 | |
| 563 | bool json_to_sat_or_all(const char *buffer, const jsmntok_t *tok, |
| 564 | struct amount_sat *sat) |
no test coverage detected