MCPcopy Create free account
hub / github.com/ElementsProject/lightning / opt_set_sat

Function opt_set_sat

lightningd/options.c:1202–1210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1200}
1201
1202static char *opt_set_sat(const char *arg, struct amount_sat *sat)
1203{
1204 struct amount_msat msat;
1205 if (!parse_amount_msat(&msat, arg, strlen(arg)))
1206 return tal_fmt(NULL, "Unable to parse millisatoshi '%s'", arg);
1207 if (!amount_msat_to_sat(sat, msat))
1208 return tal_fmt(NULL, "'%s' is not a whole number of sats", arg);
1209 return NULL;
1210}
1211
1212static char *opt_set_sat_nondust(const char *arg, struct amount_sat *sat)
1213{

Callers 1

opt_set_sat_nondustFunction · 0.85

Calls 2

amount_msat_to_satFunction · 0.85
parse_amount_msatFunction · 0.50

Tested by

no test coverage detected