rpc: Add check for too old timestamps in payment signatures.

This commit is contained in:
Guillaume Le Vaillant 2020-02-17 15:10:19 +01:00
parent 6b2b1d6368
commit 82da832368
1 changed files with 5 additions and 0 deletions

View File

@ -102,6 +102,11 @@ namespace cryptonote
MDEBUG("Timestamp is in the future");
return false;
}
if (ts < now - TIMESTAMP_LEEWAY)
{
MDEBUG("Timestamp is too old");
return false;
}
return true;
}
}