Skip to content

Commit

Permalink
Update bytes_per_chunk to 31 bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
bacv committed Mar 22, 2024
1 parent a913400 commit 88d4a83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions da/test_full_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_full_flow(self):

# encoder
data = self.encoder_test.data
encoding_params = DAEncoderParams(column_count=self.n_nodes // 2, bytes_per_field_element=32)
encoding_params = DAEncoderParams(column_count=self.n_nodes // 2, bytes_per_chunk=31)
encoded_data = DAEncoder(encoding_params).encode(data)

# mock send and await method with local verifiers
Expand Down Expand Up @@ -97,7 +97,7 @@ def test_same_blob_multiple_indexes(self):

# encoder
data = self.encoder_test.data
encoding_params = DAEncoderParams(column_count=self.n_nodes // 2, bytes_per_field_element=32)
encoding_params = DAEncoderParams(column_count=self.n_nodes // 2, bytes_per_chunk=31)
encoded_data = DAEncoder(encoding_params).encode(data)

# mock send and await method with local verifiers
Expand Down

0 comments on commit 88d4a83

Please sign in to comment.