core-lightning/bitcoin
Rusty Russell 5cf34d6618 Remove tal_len, use tal_count() or tal_bytelen().
tal_count() is used where there's a type, even if it's char or u8, and
tal_bytelen() is going to replace tal_len() for clarity: it's only needed
where a pointer is void.

We shim tal_bytelen() for now.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2018-07-30 11:31:17 +02:00
..
test Remove tal_len, use tal_count() or tal_bytelen(). 2018-07-30 11:31:17 +02:00
address.h
base58.c
base58.h
block.c
block.h Update ccan/structeq. 2018-07-04 23:57:00 +02:00
chainparams.c
chainparams.h
feerate.h bitcoin: expose feerate_floor. 2018-06-21 13:43:32 +02:00
locktime.c
locktime.h
Makefile bitcoin: expose feerate_floor. 2018-06-21 13:43:32 +02:00
preimage.h Update ccan/structeq. 2018-07-04 23:57:00 +02:00
privkey.h Update ccan/structeq. 2018-07-04 23:57:00 +02:00
pubkey.c bitcoin/pubkey: add pubkey_from_secret. 2018-07-24 00:40:01 +02:00
pubkey.h bitcoin/pubkey: add pubkey_from_secret. 2018-07-24 00:40:01 +02:00
pullpush.c Remove tal_len, use tal_count() or tal_bytelen(). 2018-07-30 11:31:17 +02:00
pullpush.h
README
script.c Remove tal_len, use tal_count() or tal_bytelen(). 2018-07-30 11:31:17 +02:00
script.h Remove tal_len, use tal_count() or tal_bytelen(). 2018-07-30 11:31:17 +02:00
shadouble.c
shadouble.h
short_channel_id.c
short_channel_id.h Update ccan/structeq. 2018-07-04 23:57:00 +02:00
signature.c Remove tal_len, use tal_count() or tal_bytelen(). 2018-07-30 11:31:17 +02:00
signature.h
tx.c Remove tal_len, use tal_count() or tal_bytelen(). 2018-07-30 11:31:17 +02:00
tx.h Update ccan/structeq. 2018-07-04 23:57:00 +02:00
varint.c
varint.h

These are standard bitcoin manipulation routines which should be
provided by any normal bitcoin library in whatever language you choose.

The ones here are standalone ones taken from bitcoin core and some I
wrote, many taken from bitcoin-iterate and pasted in here.