Update login.py
This commit is contained in:
parent
a721ee2d5b
commit
60d69e5314
|
@ -43,7 +43,10 @@ class Random(Screen):
|
||||||
entered_label = str(self.ids.add_random_bx.children[0].ids.lab.text).strip()
|
entered_label = str(self.ids.add_random_bx.children[0].ids.lab.text).strip()
|
||||||
if not entered_label:
|
if not entered_label:
|
||||||
self.ids.add_random_bx.children[0].ids.lab.focus = True
|
self.ids.add_random_bx.children[0].ids.lab.focus = True
|
||||||
is_address = AddressGenerator.generate_address(entered_label)
|
is_address = AddressGenerator.start_address_generation(
|
||||||
|
entered_label, streamNumberForAddress=1, eighteenByteRipe=False,
|
||||||
|
nonceTrialsPerByte=1000, payloadLengthExtraBytes=1000
|
||||||
|
)
|
||||||
# streamNumberForAddress = 1
|
# streamNumberForAddress = 1
|
||||||
# eighteenByteRipe = False
|
# eighteenByteRipe = False
|
||||||
# nonceTrialsPerByte = 1000
|
# nonceTrialsPerByte = 1000
|
||||||
|
|
Reference in New Issue
Block a user