pooler/electrum-ltc

load_wallet fails with timeout

Closed this issue · 5 comments

$HOME/.local/bin/electrum-ltc getinfo
Warning: package scrypt not available; synchronization could be very slow
TimeoutError()

$HOME/.local/bin/electrum-ltc load_wallet -w <wallet file>
Warning: package scrypt not available; synchronization could be very slow
Password
TimeoutError()

It works with electrum BTC and electrum-dash.
So why not with LTC ?

As per the warning, you should have the scrypt package installed. How did you install Electrum-LTC?

As per the warning, you should have the scrypt package installed. How did you install Electrum-LTC?

python3 -m pip install --user Electrum-LTC-4.0.9.3.tar.gz

And i have scrypt:


sudo apt-get install -y scrypt
Reading package lists... Done
Building dependency tree
Reading state information... Done
scrypt is already the newest version (1.2.1-2).
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.

That's not the Python scrypt package. For APT, try python3-scrypt instead.

Worked.
Thank you!