Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
usagi32 committed Feb 22, 2025
1 parent dfef660 commit f00a39e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion linera-execution/src/execution_state_actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ use linera_views::{batch::Batch, context::Context, views::View};
use oneshot::Sender;
#[cfg(with_metrics)]
use prometheus::HistogramVec;
use reqwest::{header::CONTENT_TYPE, header::HeaderMap, Client};
use reqwest::{
header::{HeaderMap, CONTENT_TYPE},

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / default-features-and-witty-integration-test

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / check-outdated-cli-md

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / benchmark-test

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / ethereum-tests

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / execution-wasmtime-test

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / lint-cargo-clippy

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / lint-cargo-doc

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / lint-check-all-features

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / lint-check-linera-service-graphql-schema

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / lint-wasm-applications

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / remote-net-test

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / storage-service-tests

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / wasm-application-test

unused import: `CONTENT_TYPE`

Check failure on line 28 in linera-execution/src/execution_state_actor.rs

View workflow job for this annotation

GitHub Actions / web

unused import: `CONTENT_TYPE`
Client,
};
use tokio::sync::RwLock;

use crate::{
Expand Down

0 comments on commit f00a39e

Please sign in to comment.