staking-deposit-cli/tests/test_credentials.py
2020-09-14 23:05:02 +08:00

15 lines
336 B
Python

import pytest
from eth2deposit.credentials import CredentialList
def test_from_mnemonic():
with pytest.raises(ValueError):
CredentialList.from_mnemonic(
mnemonic="",
num_keys=1,
amounts=[32, 32],
fork_version=bytes.fromhex('00000001'),
start_index=1,
)