mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
fc8552318a
Also fix open-channel usage message. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
274 B
C
10 lines
274 B
C
#ifndef LIGHTNING_OPT_BITS_H
|
|
#define LIGHTNING_OPT_BITS_H
|
|
#include <ccan/opt/opt.h>
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
char *opt_set_bits(const char *arg, u64 *satoshi);
|
|
void opt_show_bits(char buf[OPT_SHOW_LEN], const u64 *bits);
|
|
|
|
#endif /* LIGHTNING_OPT_BITS_H */
|