From 79c4ef0db982d4924ff1981a38f84dc1f7ee8738 Mon Sep 17 00:00:00 2001 From: anatolethien Date: Fri, 1 Mar 2024 11:34:39 +0100 Subject: [PATCH 1/2] . --- adventure/BLOCKCHAIN/jean.crypto@ynov.com | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 adventure/BLOCKCHAIN/jean.crypto@ynov.com diff --git a/adventure/BLOCKCHAIN/jean.crypto@ynov.com b/adventure/BLOCKCHAIN/jean.crypto@ynov.com new file mode 100644 index 00000000..87536105 --- /dev/null +++ b/adventure/BLOCKCHAIN/jean.crypto@ynov.com @@ -0,0 +1,9 @@ +me + +--- + +OS: Fedora Workstation 39 x86_64 +Connaissances techniques: Python, Bash, Docker, SQL, MongoDB, Power BI +Activité pro: Data analyst +Objectif souhaité: Utiliser la technologie blockchain dans un point de vue Data engineering + From 2f07c5976b10beb9218207127c4a46043bf7e828 Mon Sep 17 00:00:00 2001 From: gabriel cancel Date: Fri, 1 Mar 2024 11:50:40 +0100 Subject: [PATCH 2/2] fix: missing exception and unused import --- tools/keygen | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/keygen b/tools/keygen index d33e5731..d02fb783 100755 --- a/tools/keygen +++ b/tools/keygen @@ -42,7 +42,6 @@ import os import re import struct import sys -import time import warnings __version__='0.0.5' @@ -610,7 +609,7 @@ class keygen: try: self.ed25519_seed_bytes_from_duniterpy() self.ed25519_from_seed_bytes() - except: + except Exception as e: log.error(f'Unable to get ed25519 from duniterpy: {e}') self._cleanup() exit(2)