Merge pull request #594

7f8e5ce daemon: fix ban length using wrong parameter (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-01-03 19:53:48 +02:00
commit 6432feee6d
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -405,7 +405,7 @@ bool t_command_parser_executor::ban(const std::vector<std::string>& args)
time_t seconds = P2P_IP_BLOCKTIME;
if (args.size() > 1)
{
seconds = std::stoi(args[0]);
seconds = std::stoi(args[1]);
if (seconds == 0)
{
return false;