Skip to content

Commit

Permalink
add comment about testing blobs
Browse files Browse the repository at this point in the history
  • Loading branch information
segfault-magnet committed Jul 17, 2024
1 parent 93b4d0f commit 75eb81f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion e2e/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ mod tests {
async fn submitted_correct_block_and_was_finalized() -> Result<()> {
// given
let show_logs = false;
// blob support disabled because this test doesn't generate blocks with transactions in it
// so there is no data to blobify
let blob_support = false;
let stack = WholeStack::deploy_default(show_logs, false).await?;
let stack = WholeStack::deploy_default(show_logs, blob_support).await?;

// when
stack
Expand Down
2 changes: 1 addition & 1 deletion e2e/src/whole_stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl WholeStack {
let db_name = random_db.db_name();
let db_port = random_db.port();
let committer_builder = Committer::default()
.with_show_logs(true)
.with_show_logs(logs)
.with_eth_rpc(eth_node.ws_url().clone())
.with_fuel_rpc(fuel_node.url().clone())
.with_db_port(db_port)
Expand Down

0 comments on commit 75eb81f

Please sign in to comment.