Merge 6adae27f8c into merged_master (Bitcoin PR bitcoin/bitcoin#24836)

This commit is contained in:
James Dorfman 2024-10-08 06:20:26 +00:00
commit 9e9b73df05
7 changed files with 282 additions and 4 deletions

2
src/util/error.cpp Normal file → Executable file
View file

@ -35,6 +35,8 @@ bilingual_str TransactionErrorString(const TransactionError err)
return Untranslated("External signer not found");
case TransactionError::EXTERNAL_SIGNER_FAILED:
return Untranslated("External signer failed to sign");
case TransactionError::INVALID_PACKAGE:
return Untranslated("Transaction rejected due to invalid package");
case TransactionError::BLINDING_REQUIRED:
return Untranslated("Transaction is not yet fully blinded");
case TransactionError::VALUE_IMBALANCE: