Allow WALLET_PASSPHRASE environ var in keyfile cli tool

This commit is contained in:
nolash 2021-11-25 18:00:34 +01:00
parent 2cdccd821f
commit 39435b67ba
Signed by untrusted user who does not match committer: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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",