internal TxoPackWriter(TxoPack pack) { _pack = pack ?? throw new ArgumentNullException( nameof(pack), "Cannot create TxoPackWriter with null TxoPack."); _outpointOffset = 0; _payloadOffsetInBytes = 0; }
public TxoForwardIterator(TxoPack pack) { _outpointOffset = 0; _payloadOffset = 0; _packRef = pack; }