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

Function towire_bitcoin_outpoint

bitcoin/tx.c:742–746  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

740}
741
742void towire_bitcoin_outpoint(u8 **pptr, const struct bitcoin_outpoint *outp)
743{
744 towire_bitcoin_txid(pptr, &outp->txid);
745 towire_u32(pptr, outp->n);
746}
747
748void fromwire_bitcoin_outpoint(const u8 **cursor, size_t *max,
749 struct bitcoin_outpoint *outp)

Callers 2

towire_utxoFunction · 0.85
towire_chain_coin_mvtFunction · 0.85

Calls 2

towire_bitcoin_txidFunction · 0.85
towire_u32Function · 0.50

Tested by

no test coverage detected