From 4d17230ce28c1ebcb6f8199550d5901e805ac191 Mon Sep 17 00:00:00 2001 From: Zk-nd3r Date: Wed, 20 May 2026 07:02:27 +0700 Subject: [PATCH] Fix zallet zcashd migration strict mode --- zallet/src/commands/migrate_zcashd_wallet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zallet/src/commands/migrate_zcashd_wallet.rs b/zallet/src/commands/migrate_zcashd_wallet.rs index 4c1e9492..e9631eed 100644 --- a/zallet/src/commands/migrate_zcashd_wallet.rs +++ b/zallet/src/commands/migrate_zcashd_wallet.rs @@ -122,7 +122,7 @@ impl MigrateZcashdWalletCmd { })?; let zcashd_dump = - ZcashdDump::from_bdb_dump(&db_dump, self.allow_warnings).map_err(|e| { + ZcashdDump::from_bdb_dump(&db_dump, !self.allow_warnings).map_err(|e| { MigrateError::Zewif { error_type: ZewifError::ZcashdDump, wallet_path: wallet_path.clone(),