Browse Source

fixup! txfilter: Add a simple transaction filter

ppa-0.6.1
Christian Decker 7 years ago
parent
commit
00cad3a2ff
  1. 2
      lightningd/txfilter.c
  2. 3
      lightningd/txfilter.h

2
lightningd/txfilter.c

@ -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); 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); tal_t *tmpctx = tal_tmpctx(filter);
u8 *skp, *p2sh; u8 *skp, *p2sh;

3
lightningd/txfilter.h

@ -1,6 +1,7 @@
#ifndef LIGHTNING_LIGHTNINGD_TXFILTER_H #ifndef LIGHTNING_LIGHTNINGD_TXFILTER_H
#define LIGHTNING_LIGHTNINGD_TXFILTER_H #define LIGHTNING_LIGHTNINGD_TXFILTER_H
#include "config.h" #include "config.h"
#include <bitcoin/pubkey.h>
#include <bitcoin/tx.h> #include <bitcoin/tx.h>
#include <ccan/short_types/short_types.h> #include <ccan/short_types/short_types.h>
#include <ccan/tal/tal.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 then the transaction is marked as a match. Adds
* scriptpubkey for both raw p2wpkh and p2wpkh wrapped in p2sh. * 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 * txfilter_match -- Check whether the tx matches the filter

Loading…
Cancel
Save