funga-eth

Ethereum implementation of the funga keystore and signer
Log | Files | Refs | README | LICENSE

commit 39435b67ba7441f86f4703e24a962f6ab1fd607d
parent 2cdccd821f51e6b1b4d06012f8c90879b90dd6c7
Author: nolash <dev@holbrook.no>
Date:   Thu, 25 Nov 2021 18:00:34 +0100

Allow WALLET_PASSPHRASE environ var in keyfile cli tool

Diffstat:
Mfunga/eth/runnable/keyfile.py | 2+-
Msetup.py | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/funga/eth/runnable/keyfile.py b/funga/eth/runnable/keyfile.py @@ -52,7 +52,7 @@ if args.k != None: def main(): global pk_hex - passphrase = os.environ.get('PASSPHRASE') + passphrase = os.environ.get('WALLET_PASSPHRASE', os.environ.get('PASSPHRASE')) if args.z: passphrase = '' r = None diff --git a/setup.py b/setup.py @@ -33,7 +33,7 @@ f.close() setup( name="funga-eth", - version="0.5.1", + version="0.5.2", description="Ethereum implementation of the funga keystore and signer", author="Louis Holbrook", author_email="dev@holbrook.no",