Skip to content

Commit

Permalink
compiles, still incomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Dec 19, 2024
1 parent 4b52703 commit 5ed8819
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ui/src/components/app/freenet_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ pub struct FreenetApiSynchronizer<'a> {
pub web_api: WebApi,

/// Receiver for incoming client requests (e.g., Subscribe, Unsubscribe).
pub client_request_receiver: futures::channel::mpsc::UnboundedReceiver<ClientRequest<'a>>,
pub client_request_receiver: UnboundedReceiver<ClientRequest<'a>>,

/// Sender for sending host responses back to the client.
pub host_response_sender: futures::channel::mpsc::UnboundedSender<Result<HostResponse, ClientError>>,
pub host_response_sender: UnboundedSender<Result<HostResponse, ClientError>>,

/// Contracts that we've already subscribed to via the API
pub subscribed_contracts : HashSet<ContractKey>,
Expand Down

0 comments on commit 5ed8819

Please sign in to comment.