| 97 | } |
| 98 | |
| 99 | char *fmt_amount_sat(const tal_t *ctx, struct amount_sat sat) |
| 100 | { |
| 101 | return tal_fmt(ctx, "%"PRIu64"sat", sat.satoshis); |
| 102 | } |
| 103 | |
| 104 | static bool breakup(const char *str, size_t slen, |
| 105 | /* Length of first numeric part. */ |
no outgoing calls