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
Electrum-LTC now refusing to run on Arch or rolling distros with newer aiorpcX versions
$ electrum-ltc
Traceback (most recent call last):
File "/usr/bin/electrum-ltc", line 82, in <module>
check_imports()
~~~~~~~~~~~~~^^
File "/usr/bin/electrum-ltc", line 71, in check_imports
raise RuntimeError(f'aiorpcX version {aiorpcx._version} does not match required: 0.22.0<=ver<0.23')
RuntimeError: aiorpcX version (0, 24, 0) does not match required: 0.22.0<=ver<0.23
The text was updated successfully, but these errors were encountered:
I wouldn't use this with any funds you might lose.
$sudo nano /usr/bin/electrum-ltc
if not ((0, 22, 0) <= aiorpcx._version < (0, 23)):
raise RuntimeError(f'aiorpcX version {aiorpcx._version} does not match required: 0.22.0<=ver<0.23')
# if not ((0, 22, 0) <= aiorpcx._version < (0, 23)):
# raise RuntimeError(f'aiorpcX version {aiorpcx._version} does not match required: 0.22.0<=ver<0.23')
Electrum-LTC now refusing to run on Arch or rolling distros with newer aiorpcX versions
The text was updated successfully, but these errors were encountered: