Skip to content

Commit

Permalink
fix: unused import error
Browse files Browse the repository at this point in the history
  • Loading branch information
ermineJose committed Nov 25, 2024
1 parent 4b0d60a commit dcf8786
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions evmlib/src/testnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ use alloy::providers::fillers::{
use alloy::providers::{Identity, ProviderBuilder, ReqwestProvider};
use alloy::signers::local::PrivateKeySigner;
use alloy::transports::http::{Client, Http};
use serde::de;

pub struct Testnet {
anvil: AnvilInstance,
Expand Down Expand Up @@ -150,7 +149,7 @@ pub async fn deploy_data_payments_contract(
.on_http(rpc_url.clone());

// Deploy the contract.
let deployed = DataPaymentsHandler::deploy(provider, token_address).await;
let deployed = DataPaymentsHandler::deploy(provider, token_address).await;
let address = *deployed.contract.address();
debug!("Deployed data payments contract at {address}");
deployed
Expand Down

0 comments on commit dcf8786

Please sign in to comment.