Browse Source

chore: command help for setchannelfee

issue-2504
Michael Schmoock 6 years ago
committed by Rusty Russell
parent
commit
1cd0ae1960
  1. 12
      lightningd/peer_control.c

12
lightningd/peer_control.c

@ -1492,12 +1492,12 @@ static const struct json_command setchannelfee_command = {
"setchannelfee", "setchannelfee",
json_setchannelfee, json_setchannelfee,
"Sets specific routing fees for channel with {id} " "Sets specific routing fees for channel with {id} "
"(either peer ID, channel ID or short channel ID). " "(either peer ID, channel ID, short channel ID or 'all'). "
"The routing fees are defined by a fixed {base} (msat) " "Routing fees are defined by a fixed {base} (msat) "
"and a {ppm} value (proportional per millionth)." "and a {ppm} (proportional per millionth) value. "
"To disable channel specific fees and restore global values, " "If values for {base} or {ppm} are left out, defaults will be used. "
"just leave out the optional {base} and {ppm} values. " "{base} can also be defined in other units, for example '1sat'. "
"{base} can also be supplied in other units, i.e. '1sat'." "If {id} is 'all', the fees will be applied for all channels. "
}; };
AUTODATA(json_command, &setchannelfee_command); AUTODATA(json_command, &setchannelfee_command);

Loading…
Cancel
Save