Remove unlockwallet timeout variable initializer

This variable no longer needs to be initialized to avoid a compiler error.
This commit is contained in:
ghubstan 2020-05-04 15:19:18 -03:00
parent d48f9eb6f0
commit 9b156b86dd
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -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) {