mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-01-22 02:34:31 +00:00
service -> tower::Service
This commit is contained in:
parent
62331b76c8
commit
defef01dce
1 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue