Skip to content

Commit

Permalink
types: fix pruned BlockCompleteEntry (#338)
Browse files Browse the repository at this point in the history
fix pruned `BlockCompleteEntry`
  • Loading branch information
Boog900 authored Nov 11, 2024
1 parent 525e20e commit 5a5f88c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/src/block_complete_entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,15 +136,15 @@ impl TransactionBlobs {
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct PrunedTxBlobEntry {
/// The transaction.
pub tx: Bytes,
pub blob: Bytes,
/// The prunable transaction hash.
pub prunable_hash: ByteArray<32>,
}

#[cfg(feature = "epee")]
epee_object!(
PrunedTxBlobEntry,
tx: Bytes,
blob: Bytes,
prunable_hash: ByteArray<32>,
);

Expand Down

0 comments on commit 5a5f88c

Please sign in to comment.