This commit is contained in:
Marvin Jones 2026-06-05 16:33:57 -04:00
parent 071dd94671
commit 1863216940
3 changed files with 4 additions and 6 deletions

View File

@ -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"

View File

@ -12,7 +12,10 @@ pub fn add_python_path(py: Python<'_>) -> PyResult<()> {
.unwrap_or_else(|| current_dir.clone());
let mut paths_to_add: Vec<PathBuf> = 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")

View File

@ -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()))