pooler / electrum-ltc

Electrum-LTC Litecoin wallet
https://electrum-ltc.org
MIT License
194 stars 101 forks source link

load_wallet fails with timeout #270

Closed php-wizard closed 3 years ago

php-wizard commented 3 years ago
$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 ?

pooler commented 3 years ago

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

php-wizard commented 3 years ago

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

php-wizard commented 3 years ago

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.
pooler commented 3 years ago

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

php-wizard commented 3 years ago

Worked. Thank you!