adds missing files from previous committ

This commit is contained in:
Carl Beekhuizen 2021-09-02 16:17:21 +02:00
parent 885af40d7b
commit 5c5c298746
No known key found for this signature in database
GPG Key ID: 8F29E54F49E7AAB5
3 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@
Please read [Launchpad Validator FAQs](https://launchpad.ethereum.org/faq#keys) before generating the keys.
You can find the audit report by Trail of Bits [here](https://github.com/trailofbits/publications/blob/master/reviews/ETH2DepositCLI.pdf).
You can find the audit report by Trail of Bits [here](https://github.com/trailofbits/publications/blob/master/reviews/staking_depositCLI.pdf).
## Tutorial for users

View File

@ -13,7 +13,7 @@ from staking_deposit.utils.crypto import (
SHA256,
PBKDF2,
)
from eth2deposit.utils.file_handling import (
from staking_deposit.utils.file_handling import (
resource_path,
)

View File

@ -19,7 +19,7 @@ from staking_deposit.utils.constants import (
from staking_deposit.utils.file_handling import (
resource_path,
)
from eth2deposit.exceptions import ValidationError
from staking_deposit.exceptions import ValidationError
def _get_from_dict(dataDict: Dict[str, Any], mapList: Iterable[str]) -> str: