Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-Steiner committed Nov 13, 2020
1 parent ed7cad0 commit c0b0f34
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions rust/e2e/src/test_client/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ use xaynet_core::{
mask::{MaskConfig, Model},
ParticipantSecretKey,
};
use xaynet_sdk::{client::Client as ApiClient, ModelStore, Notify, PetSettings, StateMachine};
use xaynet_sdk::{
client::Client as ApiClient,
settings::PetSettings,
ModelStore,
Notify,
StateMachine,
};

#[derive(Ord, PartialOrd, Eq, PartialEq)]
pub enum ClientType {
Expand Down Expand Up @@ -79,10 +85,11 @@ fn compute_signatures(
pub struct Notifier;

impl Notify for Notifier {
fn notify_new_round(&mut self) {}
fn notify_sum(&mut self) {}
fn notify_update(&mut self) {}
fn notify_idle(&mut self) {}
fn new_round(&mut self) {}
fn sum(&mut self) {}
fn update(&mut self) {}
fn idle(&mut self) {}
fn load_model(&mut self) {}
}

pub struct LocalModel(pub Arc<Model>);
Expand Down

0 comments on commit c0b0f34

Please sign in to comment.