Skip to content

Commit

Permalink
lower sleep time to 10 msecs in scanForBip32
Browse files Browse the repository at this point in the history
  • Loading branch information
gpdionisio committed May 5, 2018
1 parent 7841d59 commit 0fd9fa0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hwdevice.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def scanForBip32(self, account, address, starting_spath=0, spath_count=10, isTes
spath = i
break

sleep(0.1)
sleep(0.01)

except Exception as e:
err_msg = 'error in scanForBip32'
Expand Down Expand Up @@ -374,6 +374,7 @@ def signTxFinish(self):
self.mBox2.accept()
try:
if self.tx_raw is not None:
# Signal to be catched by FinishSend on TabRewards
self.sigTxdone.emit(self.tx_raw, str(round(self.amount / 1e8, 8)))
else:
printOK("Transaction refused by the user")
Expand Down

0 comments on commit 0fd9fa0

Please sign in to comment.