You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
573 B
17 lines
573 B
5 years ago
|
#ifndef LIGHTNING_COMMON_CLOSING_FEE_H
|
||
|
#define LIGHTNING_COMMON_CLOSING_FEE_H
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#include <ccan/short_types/short_types.h>
|
||
|
|
||
|
/** During closing fee negotiation give up N% of the range between our
|
||
|
* proposal and the peer's proposal on each step. */
|
||
|
static const u8 CLOSING_FEE_NEGOTIATION_STEP_UNIT_PERCENTAGE = 0;
|
||
|
|
||
|
/** During closing fee negotiation give up N satoshi of the range between our
|
||
|
* proposal and the peer's proposal on each step. */
|
||
|
static const u8 CLOSING_FEE_NEGOTIATION_STEP_UNIT_SATOSHI = 1;
|
||
|
|
||
|
#endif /* LIGHTNING_COMMON_CLOSING_FEE_H */
|