mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-17 19:03:42 +01:00
fixup! txfilter: Add a simple transaction filter
This commit is contained in:
parent
12944ffc9b
commit
00cad3a2ff
@ -24,7 +24,7 @@ static void txfilter_add_scriptpubkey(struct txfilter *filter, u8 *script)
|
||||
filter->scriptpubkeys[count] = tal_dup_arr(filter, u8, script, tal_len(script), 0);
|
||||
}
|
||||
|
||||
void txfilter_add_derkey(struct txfilter *filter, u8 derkey[33])
|
||||
void txfilter_add_derkey(struct txfilter *filter, u8 derkey[PUBKEY_DER_LEN])
|
||||
{
|
||||
tal_t *tmpctx = tal_tmpctx(filter);
|
||||
u8 *skp, *p2sh;
|
||||
|
@ -1,6 +1,7 @@
|
||||
#ifndef LIGHTNING_LIGHTNINGD_TXFILTER_H
|
||||
#define LIGHTNING_LIGHTNINGD_TXFILTER_H
|
||||
#include "config.h"
|
||||
#include <bitcoin/pubkey.h>
|
||||
#include <bitcoin/tx.h>
|
||||
#include <ccan/short_types/short_types.h>
|
||||
#include <ccan/tal/tal.h>
|
||||
@ -20,7 +21,7 @@ struct txfilter *txfilter_new(const tal_t *ctx);
|
||||
* scriptpubkey then the transaction is marked as a match. Adds
|
||||
* scriptpubkey for both raw p2wpkh and p2wpkh wrapped in p2sh.
|
||||
*/
|
||||
void txfilter_add_derkey(struct txfilter *filter, u8 derkey[33]);
|
||||
void txfilter_add_derkey(struct txfilter *filter, u8 derkey[PUBKEY_DER_LEN]);
|
||||
|
||||
/**
|
||||
* txfilter_match -- Check whether the tx matches the filter
|
||||
|
Loading…
Reference in New Issue
Block a user