aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 737dc8b..49428e6 100644
--- a/README.rst
+++ b/README.rst
@@ -15,7 +15,7 @@ Examples
- Use arbitrary UTF-8 string as your mnemonic ``./keytree.py --custom --save mykeystore.json``
- Show Fuji testnet address format ``./keytree.py <your options> --hrp fuji``
- Generate a new mnemonic and also use a 2/3 Shamir's secret sharing (3 shares, recoverable with any 2 of them): ``./keytree.py --gen-mnemonic --gen-shamir --shamir-threshold 2 --shamir-num 3``
-- Recover a new mnemonic from the previous example and save it to a keystore file: ``./keytree.py --recover-shamir 1,2 --shamir-threshold 2 --shamir-num 3 --save mykeystore.json``
+- Recover a new mnemonic from the previous example and save it to a keystore file: ``./keytree.py --recover-shamir 1,2 --save mykeystore.json``
Caveat
diff --git a/setup.py b/setup.py
index 6113794..feaab00 100644
--- a/setup.py
+++ b/setup.py
@@ -9,4 +9,4 @@ setup(name='keytree.py',
license='MIT',
scripts=['keytree.py'],
py_modules=['bech32', 'mnemonic', 'shamir'],
- install_requires=['ecdsa', 'base58', 'pysha3', 'pycryptodomex'])
+ install_requires=['ecdsa', 'base58', 'pycryptodomex'])