Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
79 changes: 38 additions & 41 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ qrcode = "0.14.1"
nix = { version = "0.31.1", features = ["signal"] }
eframe = { version = "0.35.0", features = ["persistence", "wgpu"] }
base64 = "0.22.1"
dash-sdk = { git = "https://github.com/dashpay/platform", branch = "dash-evo-tool", features = [
dash-sdk = { git = "https://github.com/dashpay/platform", rev = "93b967f9c7ab0164b47fe825d2bae58b3974625c", features = [
"core_key_wallet",
"core_key_wallet_manager",
"core_bincode",
Expand All @@ -28,12 +28,12 @@ dash-sdk = { git = "https://github.com/dashpay/platform", branch = "dash-evo-too
"core_spv",
"shielded",
] }
rs-sdk-trusted-context-provider = { git = "https://github.com/dashpay/platform", branch = "dash-evo-tool" }
platform-wallet = { git = "https://github.com/dashpay/platform", branch = "dash-evo-tool", features = [
rs-sdk-trusted-context-provider = { git = "https://github.com/dashpay/platform", rev = "93b967f9c7ab0164b47fe825d2bae58b3974625c" }
platform-wallet = { git = "https://github.com/dashpay/platform", rev = "93b967f9c7ab0164b47fe825d2bae58b3974625c", features = [
"serde",
"shielded",
] }
platform-wallet-storage = { git = "https://github.com/dashpay/platform", branch = "dash-evo-tool", features = [
platform-wallet-storage = { git = "https://github.com/dashpay/platform", rev = "93b967f9c7ab0164b47fe825d2bae58b3974625c", features = [
"shielded",
] }
zip32 = "0.2.0"
Expand Down
14 changes: 0 additions & 14 deletions src/wallet_backend/event_bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -422,20 +422,6 @@ impl PlatformEventHandler for EventBridge {
self.nudge_refresh();
}

fn on_wallet_skipped_on_load(
&self,
wallet_id: platform_wallet::wallet::platform_wallet::WalletId,
reason: &platform_wallet::manager::load_outcome::SkipReason,
) {
// Public wallet id + structural reason only; never a secret. The
// user-facing banner is raised in `register_persisted_wallets`.
tracing::warn!(
wallet_id = %hex::encode(wallet_id),
%reason,
"A saved wallet was skipped on load because its stored data is corrupt"
);
}

fn on_shielded_sync_progress(&self, cumulative_scanned: u64, block_height: u64) {
// Downloaded-notes progress for an in-flight pass — drives the
// shielded tab's "scanning" indicator. Network-scoped (one pass covers
Expand Down
Loading
Loading