v0.2.6-pre.005-fix.001

This commit is contained in:
2026-08-21 09:43:48 +02:00
parent 7aa38b0daf
commit 63e711629f
10 changed files with 157 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-app-wallet-desk/src/wallet_session.rs
// version: 1
// version: 2
//! Durable root-scoped Wallet session lifecycle for Wallet Desk.
@@ -102,7 +102,7 @@ pub(crate) enum WalletSession {
/// Full root-scoped filesystem path retained only in Rust.
path: std::path::PathBuf,
/// Authorized OWNER handle retaining secret material only in Rust.
wallet: ksp_wallet_lib::WalletOwner,
wallet: std::boxed::Box<ksp_wallet_lib::WalletOwner>,
},
}