electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 936d1e0a24c6116fbc3d6f114a74db8b9ac6772f
parent 956bd3baaf9ab22ff58ea4e24f83ee140aca2ada
Author: SomberNight <somber.night@protonmail.com>
Date:   Fri, 30 Aug 2019 21:15:47 +0200

pyinstaller binaries: include files needed by new jsonrpc libs

fixes #5599

Diffstat:
Mcontrib/build-wine/deterministic.spec | 2++
Mcontrib/osx/osx.spec | 2++
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/contrib/build-wine/deterministic.spec b/contrib/build-wine/deterministic.spec @@ -50,6 +50,8 @@ datas += collect_data_files('safetlib') datas += collect_data_files('btchip') datas += collect_data_files('keepkeylib') datas += collect_data_files('ckcc') +datas += collect_data_files('jsonrpcserver') +datas += collect_data_files('jsonrpcclient') # We don't put these files in to actually include them in the script but to make the Analysis method scan them for imports a = Analysis([home+'run_electrum', diff --git a/contrib/osx/osx.spec b/contrib/osx/osx.spec @@ -84,6 +84,8 @@ datas += collect_data_files('safetlib') datas += collect_data_files('btchip') datas += collect_data_files('keepkeylib') datas += collect_data_files('ckcc') +datas += collect_data_files('jsonrpcserver') +datas += collect_data_files('jsonrpcclient') # Add the QR Scanner helper app datas += [(electrum + "contrib/osx/CalinsQRReader/build/Release/CalinsQRReader.app", "./contrib/osx/CalinsQRReader/build/Release/CalinsQRReader.app")]