mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
23f9c7c209
We no longer need it anywhere. This simplifies things to the point where we might as well just not include dust outputs as we go, rather than explicitly removing them, which gets rid of remove_dust.c as well. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
11 lines
342 B
C
11 lines
342 B
C
#ifndef LIGHTNING_PERMUTE_TX_H
|
|
#define LIGHTNING_PERMUTE_TX_H
|
|
#include "config.h"
|
|
#include "bitcoin/tx.h"
|
|
|
|
/* Permute the transaction into BIP69 order. */
|
|
void permute_inputs(struct bitcoin_tx_input *inputs, size_t num_inputs);
|
|
|
|
void permute_outputs(struct bitcoin_tx_output *outputs, size_t num_outputs);
|
|
#endif /* LIGHTNING_PERMUTE_TX_H */
|