Skip to content

Commit 93d9e99

Browse files
committed
Fix Account size in wasm
1 parent 743e698 commit 93d9e99

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
@@ -1753,9 +1753,8 @@ mod tests {
17531753
#[cfg(not(target_family = "wasm"))]
17541754
const SIZE: usize = 280;
17551755

1756-
// FIXME: was 2496bytes before zkapp got boxed, what should be the size now?
17571756
#[cfg(target_family = "wasm")]
1758-
const SIZE: usize = 280;
1757+
const SIZE: usize = 264;
17591758

17601759
assert_eq!(std::mem::size_of::<Account>(), SIZE);
17611760
}

0 commit comments

Comments
 (0)