Skip to content

Commit

Permalink
Namecoin: Rebrand error in transaction.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyRand committed Feb 6, 2020
1 parent 041cb03 commit ebeac68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions electrum_nmc/electrum/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -991,8 +991,8 @@ def tx_from_any(raw: Union[str, bytes]) -> Union['PartialTransaction', 'Transact
return PartialTransaction.from_raw_psbt(raw)
except BadHeaderMagic:
if raw[:10] == b'EPTF\xff'.hex():
raise SerializationError("Partial transactions generated with old Electrum versions "
"(< 4.0) are no longer supported. Please upgrade Electrum on "
raise SerializationError("Partial transactions generated with old Electrum-NMC versions "
"(< 4.0) are no longer supported. Please upgrade Electrum-NMC on "
"the other machine where this transaction was created.")
try:
tx = Transaction(raw)
Expand Down

0 comments on commit ebeac68

Please sign in to comment.