usebitcoin::Transaction;usebrk_types::{Sats, Txid, Weight};/// One transaction from `getblocktemplate`. Carries the full decoded
/// body and stats so block 0 can be projected without a follow-up
/// `getmempoolentry`/`getrawtransaction` per tx.
#[derive(Debug, Clone)]pubstructBlockTemplateTx{pubtxid: Txid,
pubfee: Sats,
pubweight: Weight,
/// Parent txids also in this template, resolved from Core's
/// wire-level one-based indices.
pubdepends:Vec<Txid>,
pubtx: Transaction,
}