mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: fix unnameable-types lint on blockchain-tree and rpc crates (#9757)
Co-authored-by: Emilia Hane <emiliaha95@gmail.com>
This commit is contained in:
@ -102,9 +102,11 @@ where
|
||||
}
|
||||
}
|
||||
|
||||
/// A future representing the response of an RPC request
|
||||
#[pin_project]
|
||||
#[allow(missing_debug_implementations)]
|
||||
pub struct ResponseFuture<F> {
|
||||
/// The kind of response future, error or pending
|
||||
#[pin]
|
||||
kind: Kind<F>,
|
||||
}
|
||||
|
||||
@ -15,6 +15,8 @@ mod auth_client_layer;
|
||||
mod auth_layer;
|
||||
mod jwt_validator;
|
||||
|
||||
pub use auth_layer::{AuthService, ResponseFuture};
|
||||
|
||||
// Export alloy JWT types
|
||||
pub use alloy_rpc_types_engine::{Claims, JwtError, JwtSecret};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user