Skip to content

Commit

Permalink
Fix feature cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
Dentosal committed Dec 11, 2024
1 parent dc62daf commit eb07ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuel-vm/src/interpreter/trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub struct ExecutionTracer<M> {
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Frame {
/// Registers at this point
#[serde(with = "serde_big_array::BigArray")]
#[cfg_attr(feature = "serde", serde(with = "serde_big_array::BigArray"))]
pub registers: [Word; VM_REGISTER_COUNT],
/// Memory delta from the previous snapshot
pub memory_diff: Option<MemoryRollbackData>,
Expand Down

0 comments on commit eb07ba9

Please sign in to comment.