mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2025-01-07 03:22:19 +00:00
15 lines
336 B
Python
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,
|
||
|
)
|