Merge pull request #6342

82da832 rpc: Add check for too old timestamps in payment signatures. (glv2)
This commit is contained in:
luigi1111
2020-04-04 12:49:02 -05:00

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;
}
}