Merge pull request #6342
82da832
rpc: Add check for too old timestamps in payment signatures. (glv2)
This commit is contained in:
commit
ad5200e440
|
@ -102,6 +102,11 @@ namespace cryptonote
|
||||||
MDEBUG("Timestamp is in the future");
|
MDEBUG("Timestamp is in the future");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (ts < now - TIMESTAMP_LEEWAY)
|
||||||
|
{
|
||||||
|
MDEBUG("Timestamp is too old");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue