mirror of
https://github.com/monero-project/monero.git
synced 2026-01-25 13:54:31 +01:00
rpc: Add check for too old timestamps in payment signatures.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user