fix imports

This commit is contained in:
hinto.janai 2024-09-06 16:54:28 -04:00
parent 9f8f2c7edf
commit 1b94435952
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 7 additions and 6 deletions

View file

@ -2,11 +2,6 @@
use std::task::{Context, Poll}; use std::task::{Context, Poll};
use cuprate_rpc_types::{
bin::{BinRequest, BinResponse},
json::{JsonRpcRequest, JsonRpcResponse},
other::{OtherRequest, OtherResponse},
};
use futures::{channel::oneshot::channel, future::BoxFuture}; use futures::{channel::oneshot::channel, future::BoxFuture};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use tower::Service; use tower::Service;
@ -15,6 +10,11 @@ use cuprate_blockchain::service::BlockchainReadHandle;
use cuprate_helper::asynch::InfallibleOneshotReceiver; use cuprate_helper::asynch::InfallibleOneshotReceiver;
use cuprate_json_rpc::Id; use cuprate_json_rpc::Id;
use cuprate_rpc_interface::{RpcError, RpcHandler}; use cuprate_rpc_interface::{RpcError, RpcHandler};
use cuprate_rpc_types::{
bin::{BinRequest, BinResponse},
json::{JsonRpcRequest, JsonRpcResponse},
other::{OtherRequest, OtherResponse},
};
use cuprate_txpool::service::TxpoolReadHandle; use cuprate_txpool::service::TxpoolReadHandle;
use crate::rpc::{bin, json, other}; use crate::rpc::{bin, json, other};

View file

@ -1,5 +1,7 @@
use std::sync::Arc; use std::sync::Arc;
use tower::ServiceExt;
use cuprate_rpc_interface::RpcError; use cuprate_rpc_interface::RpcError;
use cuprate_rpc_types::json::{ use cuprate_rpc_types::json::{
AddAuxPowRequest, AddAuxPowResponse, BannedRequest, BannedResponse, CalcPowRequest, AddAuxPowRequest, AddAuxPowResponse, BannedRequest, BannedResponse, CalcPowRequest,
@ -20,7 +22,6 @@ use cuprate_rpc_types::json::{
RelayTxResponse, SetBansRequest, SetBansResponse, SubmitBlockRequest, SubmitBlockResponse, RelayTxResponse, SetBansRequest, SetBansResponse, SubmitBlockRequest, SubmitBlockResponse,
SyncInfoRequest, SyncInfoResponse, SyncInfoRequest, SyncInfoResponse,
}; };
use tower::ServiceExt;
use crate::rpc::CupratedRpcHandlerState; use crate::rpc::CupratedRpcHandlerState;