This commit is contained in:
Victor Vobis 2025-09-13 23:06:25 +02:00
parent 0992c28d9a
commit c9925e02d1

View File

@ -25,8 +25,6 @@ fn main() -> Result<(), std::io::Error> {
let (front_tx, front_rx) = mpsc::channel::<FrontendMessage>();
let (back_tx, back_rx) = mpsc::channel::<BackendMessage>();
run_client();
return Ok(());
let backend_handle = std::thread::spawn( || {
let mut wallet_service = WalletService::new(back_rx, front_tx);