mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
a150bd191a
This behavior will be specified in BOLT #3. Closes: #14 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
13 lines
294 B
C
13 lines
294 B
C
#ifndef LIGHTNING_REMOVE_DUST_H
|
|
#define LIGHTNING_REMOVE_DUST_H
|
|
#include "config.h"
|
|
#include "bitcoin/tx.h"
|
|
|
|
/* Remove all dust outputs from tx */
|
|
void remove_dust(struct bitcoin_tx *tx, int *map);
|
|
|
|
/* Less than this is dust. */
|
|
#define DUST_THRESHOLD 546
|
|
|
|
#endif /* LIGHTNING_REMOVE_DUST_H */
|