Skip to content

Commit

Permalink
view service scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
TalDerei committed Apr 18, 2024
1 parent 040a1e0 commit 457e3d5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions crates/view/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,15 @@ impl ViewService for ViewServer {
> + Send,
>,
>;
type AuctionsStream =
Pin<Box<dyn futures::Stream<Item = Result<pb::AuctionsResponse, tonic::Status>> + Send>>;

async fn auctions(
&self,
request: tonic::Request<pb::AuctionsRequest>,
) -> Result<tonic::Response<Self::AuctionsStream>, tonic::Status> {
todo!()
}

async fn broadcast_transaction(
&self,
Expand Down

0 comments on commit 457e3d5

Please sign in to comment.