Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: telemetry service #1243

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into feat/telemetry-service
  • Loading branch information
MCozhusheck committed Dec 12, 2024
commit edd17a84a0df1628bb0695b3c46cec4c57e0e394
4 changes: 2 additions & 2 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use log::trace;
use log::{debug, error, info, warn};
use p2pool::models::Connections;
use serde_json::json;
use std::fs::{remove_dir_all, remove_file};
use std::fs::{create_dir_all, remove_dir_all, remove_file, File};
use std::ops::Deref;
use telemetry_service::TelemetryService;
use tokio::sync::watch::{self};
Expand Down Expand Up @@ -797,13 +797,13 @@ fn main() {
Some(Network::default()),
p2pool_manager.clone(),
);

let telemetry_service = TelemetryService::new(
app_config_raw.anon_id().to_string(),
"0.0.0".to_string(),
app_config.clone(),
app_in_memory_config.clone(),
);
let updates_manager = UpdatesManager::new(app_config.clone(), shutdown.to_signal());

let feedback = Feedback::new(app_in_memory_config.clone(), app_config.clone());

Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.