Skip to content

Commit

Permalink
fix: use new blob prefixes on all rollup lib tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MirandaWood committed Dec 2, 2024
1 parent bbe3d99 commit 2375d39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ mod tests {
array_concat([TX_FEE_PREFIX, 0], (0).to_be_bytes::<29>()),
true,
);
tx_effects[2] = field_from_bytes([NOTES_PREFIX, 0, 50 as u8], true);
tx_effects[2] = encode_blob_prefix(NOTES_PREFIX, 50);
for i in 0..50 {
tx_effects[i + 3] = builder.tube_data.note_hashes.storage()[i].value();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ mod tests {
array_concat([TX_FEE_PREFIX, 0], (0).to_be_bytes::<29>()),
true,
);
tx_effects[2] = field_from_bytes([NOTES_PREFIX, 0, 50 as u8], true);
tx_effects[2] = encode_blob_prefix(NOTES_PREFIX, 50);
for i in 0..50 {
tx_effects[i + 3] = builder.avm_data.note_hashes.storage()[i].value();
}
Expand Down

0 comments on commit 2375d39

Please sign in to comment.