mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
Merge c27330897d into merged_master (Bitcoin PR #18027)
This commit is contained in:
commit
4839db857d
24 changed files with 592 additions and 93 deletions
|
|
@ -14,7 +14,7 @@ bilingual_str TransactionErrorString(const TransactionError err)
|
|||
case TransactionError::OK:
|
||||
return Untranslated("No error");
|
||||
case TransactionError::MISSING_INPUTS:
|
||||
return Untranslated("Missing inputs");
|
||||
return Untranslated("Inputs missing or spent");
|
||||
case TransactionError::ALREADY_IN_CHAIN:
|
||||
return Untranslated("Transaction already in block chain");
|
||||
case TransactionError::P2P_DISABLED:
|
||||
|
|
@ -24,11 +24,11 @@ bilingual_str TransactionErrorString(const TransactionError err)
|
|||
case TransactionError::MEMPOOL_ERROR:
|
||||
return Untranslated("AcceptToMemoryPool failed");
|
||||
case TransactionError::INVALID_PSBT:
|
||||
return Untranslated("PSBT is not sane");
|
||||
return Untranslated("PSBT is not well-formed");
|
||||
case TransactionError::PSBT_MISMATCH:
|
||||
return Untranslated("PSBTs not compatible (different transactions)");
|
||||
case TransactionError::SIGHASH_MISMATCH:
|
||||
return Untranslated("Specified sighash value does not match existing value");
|
||||
return Untranslated("Specified sighash value does not match value stored in PSBT");
|
||||
case TransactionError::MAX_FEE_EXCEEDED:
|
||||
return Untranslated("Fee exceeds maximum configured by -maxtxfee");
|
||||
case TransactionError::BLINDING_REQUIRED:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue