You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This causes an error when a transaction is received or sent with the development version (run from source) of Electron Cash or Electrum ABC (released versions currently ship with python 3.8, so for now it should still work).
Traceback
Traceback (most recent call last):
File "/home/totor/.electrum-abc/external_plugins/AutoCove-Plugin.zip/AutoCove/qt.py", line 160, in history_updated
if self.Thread.isAlive(): return #Don't double broadcast the same return.
AttributeError: 'Thread' object has no attribute 'isAlive'
The text was updated successfully, but these errors were encountered:
Thanks for letting me know! I'm guessing I should probably use .is_alive() instead, but I'll need to learn how to run the dev version (never done it). Their might be a new attribute. I'll try figure it out tomorrow. For now I'm spelling out all the OpCodes in mixed case, so that it auto-decodes either using OpCodes or OP_CODES (another QCheckBox toggle). e.g. OP_OUTPOINTTXHASH vs OutpointTXHash.
This causes an error when a transaction is received or sent with the development version (run from source) of Electron Cash or Electrum ABC (released versions currently ship with python 3.8, so for now it should still work).
The text was updated successfully, but these errors were encountered: