MCPcopy Create free account
hub / github.com/ElementsProject/lightning / fromwire_jsonrpc_errcode

Function fromwire_jsonrpc_errcode

wire/fromwire.c:154–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

152}
153
154enum jsonrpc_errcode fromwire_jsonrpc_errcode(const u8 **cursor, size_t *max)
155{
156 enum jsonrpc_errcode ret;
157
158 ret = (s32)fromwire_u32(cursor, max);
159
160 return ret;
161}
162
163void fromwire_secp256k1_ecdsa_signature(const u8 **cursor,
164 size_t *max, secp256k1_ecdsa_signature *sig)

Callers

nothing calls this directly

Calls 1

fromwire_u32Function · 0.70

Tested by

no test coverage detected