mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
7174d06a70
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
13 lines
391 B
C
13 lines
391 B
C
#ifndef LIGHTNING_WALLET_PSBT_FIXUP_H
|
|
#define LIGHTNING_WALLET_PSBT_FIXUP_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <ccan/tal/tal.h>
|
|
|
|
/* If psbtblob cannot be parse, try rewriting to fix signature.
|
|
* Returns NULL if it doesn't parse or was unchanged.
|
|
*/
|
|
const u8 *psbt_fixup(const tal_t *ctx, const u8 *psbtblob);
|
|
|
|
#endif /* LIGHTNING_WALLET_PSBT_FIXUP_H */
|