#include "config.h" #include #include #include #include #include #include struct open_channel { struct bitcoin_blkid chain_hash; struct channel_id temporary_channel_id; struct amount_sat funding_satoshis; struct amount_msat push_msat; struct amount_sat dust_limit_satoshis; struct amount_msat max_htlc_value_in_flight_msat; struct amount_sat channel_reserve_satoshis; struct amount_msat htlc_minimum_msat; u32 feerate_per_kw; u16 to_self_delay; u16 max_accepted_htlcs; struct pubkey funding_pubkey; struct pubkey revocation_basepoint; struct pubkey payment_basepoint; struct pubkey delayed_payment_basepoint; struct pubkey htlc_basepoint; struct pubkey first_per_commitment_point; u8 channel_flags; struct tlv_open_channel_tlvs *tlvs; }; static void *encode(const tal_t *ctx, const struct open_channel *s) { return towire_open_channel( ctx, &s->chain_hash, &s->temporary_channel_id, s->funding_satoshis, s->push_msat, s->dust_limit_satoshis, s->max_htlc_value_in_flight_msat, s->channel_reserve_satoshis, s->htlc_minimum_msat, s->feerate_per_kw, s->to_self_delay, s->max_accepted_htlcs, &s->funding_pubkey, &s->revocation_basepoint, &s->payment_basepoint, &s->delayed_payment_basepoint, &s->htlc_basepoint, &s->first_per_commitment_point, s->channel_flags, s->tlvs); } static struct open_channel *decode(const tal_t *ctx, const void *p) { struct open_channel *s = tal(ctx, struct open_channel); if (fromwire_open_channel( s, p, &s->chain_hash, &s->temporary_channel_id, &s->funding_satoshis, &s->push_msat, &s->dust_limit_satoshis, &s->max_htlc_value_in_flight_msat, &s->channel_reserve_satoshis, &s->htlc_minimum_msat, &s->feerate_per_kw, &s->to_self_delay, &s->max_accepted_htlcs, &s->funding_pubkey, &s->revocation_basepoint, &s->payment_basepoint, &s->delayed_payment_basepoint, &s->htlc_basepoint, &s->first_per_commitment_point, &s->channel_flags, &s->tlvs)) return s; return tal_free(s); } static bool equal(const struct open_channel *x, const struct open_channel *y) { size_t upto_channel_flags = (uintptr_t)&x->channel_flags - (uintptr_t)x; if (memcmp(x, y, upto_channel_flags) != 0) return false; if (x->channel_flags != y->channel_flags) return false; assert(x->tlvs && y->tlvs); if (!memeq(x->tlvs->upfront_shutdown_script, tal_bytelen(x->tlvs->upfront_shutdown_script), y->tlvs->upfront_shutdown_script, tal_bytelen(y->tlvs->upfront_shutdown_script))) return false; return memeq(x->tlvs->channel_type, tal_bytelen(x->tlvs->channel_type), y->tlvs->channel_type, tal_bytelen(y->tlvs->channel_type)); } void run(const u8 *data, size_t size) { test_decode_encode(data, size, WIRE_OPEN_CHANNEL, struct open_channel); }