Skip to content

Commit 57a1090

Browse files
committed
Fix Account size in wasm
1 parent 5642caa commit 57a1090

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ledger/src/account/account.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1759,9 +1759,8 @@ mod tests {
17591759
#[cfg(not(target_family = "wasm"))]
17601760
const SIZE: usize = 280;
17611761

1762-
// FIXME: was 2496bytes before zkapp got boxed, what should be the size now?
17631762
#[cfg(target_family = "wasm")]
1764-
const SIZE: usize = 280;
1763+
const SIZE: usize = 264;
17651764

17661765
assert_eq!(std::mem::size_of::<Account>(), SIZE);
17671766
}

0 commit comments

Comments
 (0)