mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Remove unlockwallet timeout variable initializer
This variable no longer needs to be initialized to avoid a compiler error.
This commit is contained in:
parent
d48f9eb6f0
commit
9b156b86dd
@ -165,7 +165,7 @@ public class CliMain {
|
||||
if (nonOptionArgs.size() < 3)
|
||||
throw new IllegalArgumentException("no unlock timeout specified");
|
||||
|
||||
long timeout = 0;
|
||||
long timeout;
|
||||
try {
|
||||
timeout = Long.parseLong(nonOptionArgs.get(2));
|
||||
} catch (NumberFormatException e) {
|
||||
|
Loading…
Reference in New Issue
Block a user