From 4a4f76b19c94d0a769258c68ef47eba7e2c70b34 Mon Sep 17 00:00:00 2001 From: idaapayo Date: Mon, 24 Jan 2022 20:12:34 +0300 Subject: [PATCH] remove unused import and renaming pbkdf2 default params --- funga/eth/keystore/keyfile.py | 4 ++-- tests/test_cli.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/funga/eth/keystore/keyfile.py b/funga/eth/keystore/keyfile.py index 6575795..2385fc6 100644 --- a/funga/eth/keystore/keyfile.py +++ b/funga/eth/keystore/keyfile.py @@ -36,7 +36,7 @@ default_scrypt_kdfparams = { 'salt': os.urandom(32).hex(), } -pbkdf2_kdfparams = { +default_pbkdf2_kdfparams = { 'c': 100000, 'dklen': 32, 'prf': 'sha256', @@ -64,7 +64,7 @@ class Hashes: dklen=dklen) @staticmethod - def from_pbkdf2(kdfparams=pbkdf2_kdfparams, passphrase=''): + def from_pbkdf2(kdfparams=default_pbkdf2_kdfparams, passphrase=''): if kdfparams['prf'] == 'hmac-sha256': kdfparams['prf'].replace('hmac-sha256','sha256') diff --git a/tests/test_cli.py b/tests/test_cli.py index 146302e..8653064 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -4,7 +4,7 @@ import logging import os # external imports -from hexathon import strip_0x, add_0x +from hexathon import strip_0x from pathlib import Path import sys @@ -16,7 +16,7 @@ print(sys.path) from funga.eth.signer import EIP155Signer from funga.eth.keystore.dict import DictKeystore -# import dicttest as d + from funga.eth.cli.handle import SignRequestHandler from funga.eth.transaction import EIP155Transaction