Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Sep 20, 2024
1 parent 89e91e8 commit 368b1ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/tests/txpool_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn request<D: DeserializeOwned, S: Serialize>(method: &str, port: u16, par
async fn test_txpool_content(#[future] katana_empty: Katana, _setup: ()) {
let (server_addr, server_handle, katana_empty) = initial_setup(katana_empty).await;

// Create a sample transactions
// Create a sample transaction
let (transaction, transaction_signed) = create_sample_transactions(&katana_empty, 1)
.await
.expect("Failed to create sample transaction")
Expand Down Expand Up @@ -109,7 +109,7 @@ async fn test_txpool_content(#[future] katana_empty: Katana, _setup: ()) {
async fn test_txpool_content_from(#[future] katana_empty: Katana, _setup: ()) {
let (server_addr, server_handle, katana_empty) = initial_setup(katana_empty).await;

// Create a sample transactions
// Create a sample transaction
let (transaction, transaction_signed) = create_sample_transactions(&katana_empty, 1)
.await
.expect("Failed to create sample transaction")
Expand Down Expand Up @@ -153,7 +153,7 @@ async fn test_txpool_content_from(#[future] katana_empty: Katana, _setup: ()) {
async fn test_txpool_status(#[future] katana_empty: Katana, _setup: ()) {
let (server_addr, server_handle, katana_empty) = initial_setup(katana_empty).await;

// Create a sample transactions
// Create a sample transaction
let (transaction, _) = create_sample_transactions(&katana_empty, 1)
.await
.expect("Failed to create sample transaction")
Expand Down Expand Up @@ -188,7 +188,7 @@ async fn test_txpool_status(#[future] katana_empty: Katana, _setup: ()) {
async fn test_txpool_inspect(#[future] katana_empty: Katana, _setup: ()) {
let (server_addr, server_handle, katana_empty) = initial_setup(katana_empty).await;

// Create a sample transactions
// Create a sample transaction
let (transaction, transaction_signed) = create_sample_transactions(&katana_empty, 1)
.await
.expect("Failed to create sample transaction")
Expand Down

0 comments on commit 368b1ed

Please sign in to comment.