service -> tower::Service
Some checks failed
Audit / audit (push) Has been cancelled
Deny / audit (push) Has been cancelled

This commit is contained in:
Boog900 2024-10-30 00:10:01 +00:00
parent 62331b76c8
commit defef01dce
No known key found for this signature in database
GPG key ID: 42AB1287CB0041C2

View file

@ -39,7 +39,7 @@ pub enum TxpoolReadRequest {
} }
//---------------------------------------------------------------------------------------------------- TxpoolReadResponse //---------------------------------------------------------------------------------------------------- TxpoolReadResponse
/// The transaction pool `service` read response type. /// The transaction pool `tower::Service` read response type.
#[expect(clippy::large_enum_variant)] #[expect(clippy::large_enum_variant)]
pub enum TxpoolReadResponse { pub enum TxpoolReadResponse {
/// The response for [`TxpoolReadRequest::TxBlob`]. /// The response for [`TxpoolReadRequest::TxBlob`].
@ -78,7 +78,7 @@ pub enum TxpoolReadResponse {
} }
//---------------------------------------------------------------------------------------------------- TxpoolWriteRequest //---------------------------------------------------------------------------------------------------- TxpoolWriteRequest
/// The transaction pool `service` write request type. /// The transaction pool `tower::Service` write request type.
#[derive(Clone)] #[derive(Clone)]
pub enum TxpoolWriteRequest { pub enum TxpoolWriteRequest {
/// Add a transaction to the pool. /// Add a transaction to the pool.
@ -108,7 +108,7 @@ pub enum TxpoolWriteRequest {
} }
//---------------------------------------------------------------------------------------------------- TxpoolWriteResponse //---------------------------------------------------------------------------------------------------- TxpoolWriteResponse
/// The transaction pool `service` write response type. /// The transaction pool `tower::Service` write response type.
#[derive(Clone, Debug, Ord, PartialOrd, Eq, PartialEq)] #[derive(Clone, Debug, Ord, PartialOrd, Eq, PartialEq)]
pub enum TxpoolWriteResponse { pub enum TxpoolWriteResponse {
/// Response to: /// Response to: