From 1863216940168a72286bd0cd37e077686e8c94af Mon Sep 17 00:00:00 2001 From: Marvin Jones Date: Fri, 5 Jun 2026 16:33:57 -0400 Subject: [PATCH] CI fixes --- .deny.toml | 3 --- lez/keycard_wallet/src/python_path.rs | 5 ++++- lez/wallet/src/cli/programs/token.rs | 2 -- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.deny.toml b/.deny.toml index eef90d76..00e800c5 100644 --- a/.deny.toml +++ b/.deny.toml @@ -16,10 +16,7 @@ ignore = [ { id = "RUSTSEC-2026-0118", reason = "`hickory-proto` v0.25.0-alpha.5 is present transitively from logos crates, modification may break integration" }, { id = "RUSTSEC-2026-0119", reason = "`hickory-proto` v0.25.0-alpha.5 is present transitively from logos crates, modification may break integration" }, - { id = "RUSTSEC-2025-0137", reason = "newest `rint` depends on rustc v1.90.0 and we build artifacts with v1.88.8" }, - { id = "RUSTSEC-2024-0370", reason = "transitive dependency of `logos-blockchain-http-api-common`, can't do anything than wait for upstream fix" }, ->>>>>>> refs/rewritten/onto ] yanked = "deny" unused-ignored-advisory = "deny" diff --git a/lez/keycard_wallet/src/python_path.rs b/lez/keycard_wallet/src/python_path.rs index df25db2a..cee051ca 100644 --- a/lez/keycard_wallet/src/python_path.rs +++ b/lez/keycard_wallet/src/python_path.rs @@ -12,7 +12,10 @@ pub fn add_python_path(py: Python<'_>) -> PyResult<()> { .unwrap_or_else(|| current_dir.clone()); let mut paths_to_add: Vec = vec![ - python_base.join("lez").join("keycard_wallet").join("python"), + python_base + .join("lez") + .join("keycard_wallet") + .join("python"), python_base .join("lez") .join("keycard_wallet") diff --git a/lez/wallet/src/cli/programs/token.rs b/lez/wallet/src/cli/programs/token.rs index 4ef5dfee..4a64f902 100644 --- a/lez/wallet/src/cli/programs/token.rs +++ b/lez/wallet/src/cli/programs/token.rs @@ -192,7 +192,6 @@ impl WalletSubcommand for TokenProgramAgnosticSubcommand { (to_npk, to_vpk) }; - let from = from.resolve(wallet_core.storage())?; let to = to .map(|account_mention| account_mention.resolve(wallet_core.storage())) @@ -342,7 +341,6 @@ impl WalletSubcommand for TokenProgramAgnosticSubcommand { (holder_npk, holder_vpk) }; - let definition = definition.resolve(wallet_core.storage())?; let holder = holder .map(|account_mention| account_mention.resolve(wallet_core.storage()))