Skip to contents

Returns a character vector of transaction IDs currently in the node's memory pool.

Usage

mc_get_raw_mempool(conn)

Arguments

conn

A connection object created by mc_connect.

Value

A character vector of transaction IDs (txids).

See also

mc_get_mempool_info for mempool statistics.

Other mempool & transactions: mc_get_mempool_info(), mc_get_raw_transaction(), mc_get_tx_out()

Examples

if (FALSE) { # \dontrun{
pending <- mc_get_raw_mempool(conn)
length(pending)  # number of pending transactions
} # }