Allow WALLET_PASSPHRASE environ var in keyfile cli tool
This commit is contained in:
parent
2cdccd821f
commit
39435b67ba
@ -52,7 +52,7 @@ if args.k != None:
|
|||||||
def main():
|
def main():
|
||||||
global pk_hex
|
global pk_hex
|
||||||
|
|
||||||
passphrase = os.environ.get('PASSPHRASE')
|
passphrase = os.environ.get('WALLET_PASSPHRASE', os.environ.get('PASSPHRASE'))
|
||||||
if args.z:
|
if args.z:
|
||||||
passphrase = ''
|
passphrase = ''
|
||||||
r = None
|
r = None
|
||||||
|
2
setup.py
2
setup.py
@ -33,7 +33,7 @@ f.close()
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="funga-eth",
|
name="funga-eth",
|
||||||
version="0.5.1",
|
version="0.5.2",
|
||||||
description="Ethereum implementation of the funga keystore and signer",
|
description="Ethereum implementation of the funga keystore and signer",
|
||||||
author="Louis Holbrook",
|
author="Louis Holbrook",
|
||||||
author_email="dev@holbrook.no",
|
author_email="dev@holbrook.no",
|
||||||
|
Loading…
Reference in New Issue
Block a user