pub struct GetMempoolEntryResponse {Show 15 fields
pub ancestorcount: u64,
pub ancestorsize: u64,
pub bip125_replaceable: bool,
pub chunkweight: u64,
pub depends: Value,
pub descendantcount: u64,
pub descendantsize: u64,
pub fees: Value,
pub height: u64,
pub spentby: Value,
pub time: u64,
pub unbroadcast: bool,
pub vsize: u64,
pub weight: u64,
pub wtxid: String,
}Expand description
Response for the GetMempoolEntry RPC method
Fields§
§ancestorcount: u64number of in-mempool ancestor transactions (including this one)
ancestorsize: u64virtual transaction size of in-mempool ancestors (including this one)
bip125_replaceable: boolWhether this transaction signals BIP125 replaceability or has an unconfirmed ancestor signaling BIP125 replaceability. (DEPRECATED)
chunkweight: u64sigops-adjusted weight (as defined in BIP 141 and modified by ‘-bytespersigop’) of this transaction’s chunk
depends: Valueunconfirmed transactions used as inputs for this transaction
descendantcount: u64number of in-mempool descendant transactions (including this one)
descendantsize: u64virtual transaction size of in-mempool descendants (including this one)
fees: Value§height: u64block height when transaction entered pool
spentby: Valueunconfirmed transactions spending outputs from this transaction
time: u64local time transaction entered pool in seconds since 1 Jan 1970 GMT
unbroadcast: boolWhether this transaction is currently unbroadcast (initial broadcast not yet acknowledged by any peers)
vsize: u64virtual transaction size as defined in BIP 141. This is different from actual serialized size for witness transactions as witness data is discounted.
weight: u64transaction weight as defined in BIP 141.
wtxid: Stringhash of serialized transaction, including witness data
Trait Implementations§
Source§impl Clone for GetMempoolEntryResponse
impl Clone for GetMempoolEntryResponse
Source§fn clone(&self) -> GetMempoolEntryResponse
fn clone(&self) -> GetMempoolEntryResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more