mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
Fix wallet import (#5695)
* Fix wallet import * Improve error message for import of wallet file
This commit is contained in:
@@ -30,7 +30,7 @@ public class WasabiWalletFileParser : IWalletFileParser
|
||||
Network = network
|
||||
};
|
||||
|
||||
if (jobj is null || !derivationSchemeParser.TryParseXpub(jobj.ExtPubKey, ref result, out var error, false))
|
||||
if (jobj is null || !derivationSchemeParser.TryParseXpub(jobj.ExtPubKey, ref result))
|
||||
return false;
|
||||
|
||||
if (jobj.MasterFingerprint is not null)
|
||||
|
||||
Reference in New Issue
Block a user