|
@ -1,5 +1,6 @@ |
|
|
#include <assert.h> |
|
|
#include <assert.h> |
|
|
#include <ccan/short_types/short_types.h> |
|
|
#include <ccan/short_types/short_types.h> |
|
|
|
|
|
#include <common/utils.h> |
|
|
#include <stdio.h> |
|
|
#include <stdio.h> |
|
|
#include <wire/wire.h> |
|
|
#include <wire/wire.h> |
|
|
|
|
|
|
|
@ -29,6 +30,9 @@ const u8 *fromwire(const u8 **cursor UNNEEDED, size_t *max UNNEEDED, void *copy |
|
|
/* Generated stub for fromwire_amount_sat */ |
|
|
/* Generated stub for fromwire_amount_sat */ |
|
|
struct amount_sat fromwire_amount_sat(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
struct amount_sat fromwire_amount_sat(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
{ fprintf(stderr, "fromwire_amount_sat called!\n"); abort(); } |
|
|
{ fprintf(stderr, "fromwire_amount_sat called!\n"); abort(); } |
|
|
|
|
|
/* Generated stub for fromwire_bool */ |
|
|
|
|
|
bool fromwire_bool(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
|
|
|
{ fprintf(stderr, "fromwire_bool called!\n"); abort(); } |
|
|
/* Generated stub for fromwire_fail */ |
|
|
/* Generated stub for fromwire_fail */ |
|
|
const void *fromwire_fail(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
const void *fromwire_fail(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
{ fprintf(stderr, "fromwire_fail called!\n"); abort(); } |
|
|
{ fprintf(stderr, "fromwire_fail called!\n"); abort(); } |
|
@ -47,6 +51,9 @@ u8 *fromwire_tal_arrn(const tal_t *ctx UNNEEDED, |
|
|
/* Generated stub for fromwire_u16 */ |
|
|
/* Generated stub for fromwire_u16 */ |
|
|
u16 fromwire_u16(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
u16 fromwire_u16(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
{ fprintf(stderr, "fromwire_u16 called!\n"); abort(); } |
|
|
{ fprintf(stderr, "fromwire_u16 called!\n"); abort(); } |
|
|
|
|
|
/* Generated stub for fromwire_u64 */ |
|
|
|
|
|
u64 fromwire_u64(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
|
|
|
{ fprintf(stderr, "fromwire_u64 called!\n"); abort(); } |
|
|
/* Generated stub for fromwire_u8 */ |
|
|
/* Generated stub for fromwire_u8 */ |
|
|
u8 fromwire_u8(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
u8 fromwire_u8(const u8 **cursor UNNEEDED, size_t *max UNNEEDED) |
|
|
{ fprintf(stderr, "fromwire_u8 called!\n"); abort(); } |
|
|
{ fprintf(stderr, "fromwire_u8 called!\n"); abort(); } |
|
@ -56,6 +63,9 @@ void towire(u8 **pptr UNNEEDED, const void *data UNNEEDED, size_t len UNNEEDED) |
|
|
/* Generated stub for towire_amount_sat */ |
|
|
/* Generated stub for towire_amount_sat */ |
|
|
void towire_amount_sat(u8 **pptr UNNEEDED, const struct amount_sat sat UNNEEDED) |
|
|
void towire_amount_sat(u8 **pptr UNNEEDED, const struct amount_sat sat UNNEEDED) |
|
|
{ fprintf(stderr, "towire_amount_sat called!\n"); abort(); } |
|
|
{ fprintf(stderr, "towire_amount_sat called!\n"); abort(); } |
|
|
|
|
|
/* Generated stub for towire_bool */ |
|
|
|
|
|
void towire_bool(u8 **pptr UNNEEDED, bool v UNNEEDED) |
|
|
|
|
|
{ fprintf(stderr, "towire_bool called!\n"); abort(); } |
|
|
/* Generated stub for towire_secp256k1_ecdsa_signature */ |
|
|
/* Generated stub for towire_secp256k1_ecdsa_signature */ |
|
|
void towire_secp256k1_ecdsa_signature(u8 **pptr UNNEEDED, |
|
|
void towire_secp256k1_ecdsa_signature(u8 **pptr UNNEEDED, |
|
|
const secp256k1_ecdsa_signature *signature UNNEEDED) |
|
|
const secp256k1_ecdsa_signature *signature UNNEEDED) |
|
@ -66,6 +76,9 @@ void towire_sha256_double(u8 **pptr UNNEEDED, const struct sha256_double *sha256 |
|
|
/* Generated stub for towire_u16 */ |
|
|
/* Generated stub for towire_u16 */ |
|
|
void towire_u16(u8 **pptr UNNEEDED, u16 v UNNEEDED) |
|
|
void towire_u16(u8 **pptr UNNEEDED, u16 v UNNEEDED) |
|
|
{ fprintf(stderr, "towire_u16 called!\n"); abort(); } |
|
|
{ fprintf(stderr, "towire_u16 called!\n"); abort(); } |
|
|
|
|
|
/* Generated stub for towire_u64 */ |
|
|
|
|
|
void towire_u64(u8 **pptr UNNEEDED, u64 v UNNEEDED) |
|
|
|
|
|
{ fprintf(stderr, "towire_u64 called!\n"); abort(); } |
|
|
/* Generated stub for towire_u8 */ |
|
|
/* Generated stub for towire_u8 */ |
|
|
void towire_u8(u8 **pptr UNNEEDED, u8 v UNNEEDED) |
|
|
void towire_u8(u8 **pptr UNNEEDED, u8 v UNNEEDED) |
|
|
{ fprintf(stderr, "towire_u8 called!\n"); abort(); } |
|
|
{ fprintf(stderr, "towire_u8 called!\n"); abort(); } |
|
|