chore(wallet): Fix descriptor mismatch error keychain

This commit is contained in:
LLFourn 2024-07-22 02:57:00 +10:00
parent 2cf07d686b
commit 8875c92ec1
No known key found for this signature in database
GPG Key ID: A27093B54DA11F65

View File

@ -499,7 +499,7 @@ impl Wallet {
if change_descriptor.descriptor_id() != exp_change_descriptor.descriptor_id() {
return Err(LoadError::Mismatch(LoadMismatch::Descriptor {
keychain: KeychainKind::External,
keychain: KeychainKind::Internal,
loaded: change_descriptor,
expected: exp_change_descriptor,
}));