Skip to content

Commit

Permalink
remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
MujkicA committed Aug 26, 2024
1 parent c774288 commit b8c9ae0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions e2e/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ zip = { workspace = true, features = ["deflate"] }
[dev-dependencies]
alloy = { workspace = true, features = [ "signer-aws", "signer-mnemonic", "serde" ] }
alloy-chains = { workspace = true }
anyhow = { workspace = true, features = [ "std" ] }
aws-sdk-kms = { workspace = true, features = [ "rustls" ] }
aws-config = { workspace = true }
anyhow = { workspace = true, features = ["std"] }
aws-sdk-kms = { workspace = true, features = ["rustls"] }
aws-config = { workspace = true, features = ["rustls"] }
eth = { workspace = true, features = ["test-helpers"] }
fuel = { workspace = true, features = ["test-helpers"] }
hex = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion e2e/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mod tests {
#[tokio::test(flavor = "multi_thread")]
async fn submitted_correct_block_and_was_finalized() -> Result<()> {
// given
let show_logs = true;
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;
Expand Down
3 changes: 0 additions & 3 deletions e2e/src/whole_stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,12 @@ impl WholeStack {
let eth_node = start_eth(logs).await?;
let (main_key, secondary_key) = create_and_fund_kms_keys(&kms, &eth_node).await?;

dbg!("Deploying contract");
let (contract_args, deployed_contract) = deploy_contract(&eth_node, &main_key).await?;

dbg!("Starting fuel node");
let fuel_node = start_fuel_node(logs).await?;

let (db_process, db) = start_db().await?;

dbg!("Starting committer");
let committer = start_committer(
logs,
blob_support,
Expand Down
3 changes: 2 additions & 1 deletion packages/eth/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

use std::{num::NonZeroU32, pin::Pin};

use alloy::primitives::U256;
use async_trait::async_trait;
use futures::{stream::TryStreamExt, Stream};
use ports::{
l1::{Api, Contract, EventStreamer, Result},
types::{FuelBlockCommittedOnL1, L1Height, TransactionResponse, ValidatedFuelBlock, U256},
types::{FuelBlockCommittedOnL1, L1Height, TransactionResponse, ValidatedFuelBlock},
};
use websocket::EthEventStreamer;

Expand Down

0 comments on commit b8c9ae0

Please sign in to comment.