@ -69,7 +69,7 @@ void towire_u64(u8 **pptr, u64 v);
void towire_double ( u8 * * pptr , const double * v ) ;
void towire_double ( u8 * * pptr , const double * v ) ;
void towire_pad ( u8 * * pptr , size_t num ) ;
void towire_pad ( u8 * * pptr , size_t num ) ;
void towire_bool ( u8 * * pptr , bool v ) ;
void towire_bool ( u8 * * pptr , bool v ) ;
void towire_var_int ( u8 * * pptr , const u64 val ) ;
void towire_bigsize ( u8 * * pptr , const u64 val ) ;
void towire_u8_array ( u8 * * pptr , const u8 * arr , size_t num ) ;
void towire_u8_array ( u8 * * pptr , const u8 * arr , size_t num ) ;
@ -86,7 +86,7 @@ u32 fromwire_u32(const u8 **cursor, size_t *max);
u64 fromwire_u64 ( const u8 * * cursor , size_t * max ) ;
u64 fromwire_u64 ( const u8 * * cursor , size_t * max ) ;
void fromwire_double ( const u8 * * cursor , size_t * max , double * v ) ;
void fromwire_double ( const u8 * * cursor , size_t * max , double * v ) ;
bool fromwire_bool ( const u8 * * cursor , size_t * max ) ;
bool fromwire_bool ( const u8 * * cursor , size_t * max ) ;
u64 fromwire_var_int ( const u8 * * cursor , size_t * max ) ;
u64 fromwire_bigsize ( const u8 * * cursor , size_t * max ) ;
void fromwire_secret ( const u8 * * cursor , size_t * max , struct secret * secret ) ;
void fromwire_secret ( const u8 * * cursor , size_t * max , struct secret * secret ) ;
void fromwire_privkey ( const u8 * * cursor , size_t * max , struct privkey * privkey ) ;
void fromwire_privkey ( const u8 * * cursor , size_t * max , struct privkey * privkey ) ;
void fromwire_pubkey ( const u8 * * cursor , size_t * max , struct pubkey * pubkey ) ;
void fromwire_pubkey ( const u8 * * cursor , size_t * max , struct pubkey * pubkey ) ;