Root path is [], not [0]

This commit is contained in:
slush0 2014-02-13 16:50:16 +01:00
parent 21b3b0ab91
commit 1f893afedd
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ class TestAddresses(common.TrezorTest):
label='test',
language='english')
self.client.get_address('Bitcoin', [0]) # to compute root node via BIP39
self.client.get_address('Bitcoin', []) # to compute root node via BIP39
for depth in range(8):
start = time.time()
@ -30,7 +30,7 @@ class TestAddresses(common.TrezorTest):
label='test',
language='english')
self.client.get_address('Bitcoin', [0]) # to compute root node via BIP39
self.client.get_address('Bitcoin', []) # to compute root node via BIP39
for depth in range(8):
start = time.time()