From 11cf5dd49b80398a741945363de432317ecf122f Mon Sep 17 00:00:00 2001
From: Holger <holger@nahrstaedt.de>
Date: Tue, 23 Oct 2018 20:29:38 +0200
Subject: [PATCH] Add missing scrypt to pyinstaller and prepare for missing
 witness api

---
 CHANGELOG.rst       | 5 +++++
 beempy-onedir.spec  | 2 +-
 beempy-onefile.spec | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index d460350d..6a7935b0 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,5 +1,10 @@
 Changelog
 =========
+0.20.9
+------
+* add missing scrypt to the pyinstaller
+* prepare for removed witness api in rpc nodes
+
 0.20.8
 ------
 * fix hardfork property in steem
diff --git a/beempy-onedir.spec b/beempy-onedir.spec
index 9ab96469..821051e3 100644
--- a/beempy-onedir.spec
+++ b/beempy-onedir.spec
@@ -25,7 +25,7 @@ a = Analysis(['beem/cli.py'],
              pathex=['beem'],
              binaries=binaries,
              datas=analysis_data,
-             hiddenimports=['scrypt', 'websocket'],
+             hiddenimports=['scrypt', '_scrypt', 'websocket', 'pylibscrypt', 'cffi', 'cryptography.hazmat.backends.openssl', 'cryptography']],
              hookspath=[],
              runtime_hooks=[],
              excludes=['matplotlib', 'scipy', 'pandas', 'numpy', 'PyQt5', 'tkinter'],
diff --git a/beempy-onefile.spec b/beempy-onefile.spec
index c9534b37..d660cffa 100644
--- a/beempy-onefile.spec
+++ b/beempy-onefile.spec
@@ -26,7 +26,7 @@ a = Analysis(['beem/cli.py'],
              pathex=['beem'],
              binaries=binaries,
              datas=analysis_data,
-             hiddenimports=['scrypt', 'websocket'],
+             hiddenimports=['scrypt', '_scrypt', 'websocket', 'pylibscrypt', 'cffi', 'cryptography.hazmat.backends.openssl', 'cryptography'],
              hookspath=[],
              runtime_hooks=[],
              excludes=['matplotlib', 'scipy', 'pandas', 'numpy', 'PyQt5', 'tkinter'],
-- 
GitLab