crate::ix!();/**
| Dumb serialization/storage-helper
| for BlockHeaderAndShortTxIDs and
| PartiallyDownloadedBlock
|
*/pubstructPrefilledTransaction{/**
| Used as an offset since last prefilled tx
| in CBlockHeaderAndShortTxIDs, as a proper
| transaction-in-block-index in
| PartiallyDownloadedBlock
*/pubindex:u16,
pubtx: TransactionRef,
}lazy_static!{/*
SERIALIZE_METHODS(PrefilledTransaction, obj)
{
READWRITE(COMPACTSIZE(obj.index),
Using<TransactionCompression>(obj.tx));
}
*/}