Package Details: electron-cash 4.4.0-1

Git Clone URL: https://aur.archlinux.org/electron-cash.git (read-only, click to copy)
Package Base: electron-cash
Description: Lightweight Bitcoin Cash wallet
Upstream URL: http://www.electroncash.org/
Licenses: MIT
Conflicts: electron-cash
Provides: electron-cash
Submitter: 0x647262
Maintainer: 0e4ef622
Last Packager: 0e4ef622
Votes: 28
Popularity: 0.000000
First Submitted: 2017-08-18 15:38 (UTC)
Last Updated: 2024-03-06 17:50 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

ZaZam commented on 2021-12-13 19:31 (UTC) (edited on 2021-12-13 19:50 (UTC) by ZaZam)

py39 needs to be changed to py310 in PKGBUILD because of Python 3.10. And the python dependency should be versioned because of that line. For example:

'python>3.10'
'python<3.11'

ichundes commented on 2021-12-09 17:44 (UTC)

@0e4ef622 @ZaZam i think this was updated early before 4.2.6 was officially released. The 4.2.6 release on Github was replaced with an updated version that contains a fix for the AppImage when run on Debian and others.

ZaZam commented on 2021-12-08 17:43 (UTC)

I get a different sha256sum for electron-cash-4.2.6.tar.gz: 8736d53c17dafb7b35e81c13d26fa38be9f5bb5adaf4808cfcbc067da024df24

0e4ef622 commented on 2020-12-02 19:25 (UTC)

My bad, should be fixed now.

dkaparis commented on 2020-12-02 18:55 (UTC)

They are and I suspect this is the reason:

$ python --version
Python 3.9.0

0e4ef622 commented on 2020-12-02 18:48 (UTC)

@dkaparis Are your packages up to date? Specifically the python package.

$ python --version
Python 3.8.6

dkaparis commented on 2020-12-02 17:48 (UTC) (edited on 2020-12-02 17:59 (UTC) by dkaparis)

Installation fails for me:

...
==> Starting check()...
GLOB sdist-make: /xxx/electron-cash/src/Electron-Cash-4.2.3/setup.py
py38 create: /xxx/electron-cash/src/Electron-Cash-4.2.3/.tox/py38
ERROR: InterpreterNotFound: python3.8
_________________________________________________________________________________________________________________________________________________________ summary __________________________________________________________________________________________________________________________________________________________
ERROR:  py38: InterpreterNotFound: python3.8
==> ERROR: A failure occurred in check().
    Aborting...

0e4ef622 commented on 2020-08-13 00:16 (UTC)

@JP-Ellis Thanks, fixed.

JP-Ellis commented on 2020-08-11 05:17 (UTC)

I have not been able to compile this lately unless I set GIT_SUBMODULE_SKIP=1 in the environment (see lines 253-263 of contrib/base.sh).

otataPJ commented on 2020-05-11 15:27 (UTC) (edited on 2020-05-11 15:27 (UTC) by otataPJ)

Doesn't work for me with the latest python-ecdsa (version 0.15-1). Had to downgrade python-ecdsa to version 0.13.3-3 to be able to decrypt an existing wallet.

Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/electroncash_gui/qt/installwizard.py", line 234, in run_and_get_wallet
    self.storage.decrypt(password)
  File "/usr/lib/python3.8/site-packages/electroncash/storage.py", line 138, in decrypt
    s = zlib.decompress(ec_key.decrypt_message(self.raw)) if self.raw else None
  File "/usr/lib/python3.8/site-packages/electroncash/bitcoin.py", line 720, in decrypt_message
    ecdh_key = point_to_ser(ephemeral_pubkey * self.privkey.secret_multiplier)
  File "/usr/lib/python3.8/site-packages/electroncash/ecc_fast.py", line 44, in mul
    public_pair_bytes = b'\4' + self.x().to_bytes(32, byteorder="big") + self.y().to_bytes(32, byteorder="big")
AttributeError: 'mpz' object has no attribute 'to_bytes'

-> Therefore probably an upstream issue, but commented here if others face the same.