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

Function fromwire_bitcoin_outpoint

bitcoin/tx.c:748–753  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

746}
747
748void fromwire_bitcoin_outpoint(const u8 **cursor, size_t *max,
749 struct bitcoin_outpoint *outp)
750{
751 fromwire_bitcoin_txid(cursor, max, &outp->txid);
752 outp->n = fromwire_u32(cursor, max);
753}
754
755void towire_bitcoin_tx(u8 **pptr, const struct bitcoin_tx *tx)
756{

Callers 5

runFunction · 0.85
runFunction · 0.85
runFunction · 0.85
fromwire_utxoFunction · 0.85
fromwire_chain_coin_mvtFunction · 0.85

Calls 2

fromwire_bitcoin_txidFunction · 0.85
fromwire_u32Function · 0.50

Tested by

no test coverage detected