Skip to content

Commit

Permalink
30
Browse files Browse the repository at this point in the history
  • Loading branch information
stedfn committed Dec 17, 2024
1 parent 243fb07 commit 1b9a495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/primitives/src/stateless_validation/state_witness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl ChunkStateWitness {
new_transactions_validation_state,
);
let inner_len = borsh::to_vec(&inner).unwrap().len();
const WANTED_SIZE: usize = 20 * 1024 * 1024; // 30 MB
const WANTED_SIZE: usize = 30 * 1024 * 1024; // 30 MB
let padding_size = WANTED_SIZE - inner_len;
let padding = vec![0; padding_size];
Self { inner, padding }
Expand Down

0 comments on commit 1b9a495

Please sign in to comment.