fix: use inner created_at timestamp nip17

This commit is contained in:
2024-09-22 15:46:26 +01:00
parent a6e6e0a632
commit baed390beb
4 changed files with 4 additions and 3 deletions

View File

@ -44,7 +44,7 @@ export function unixNowMs() {
}
export function jitter(n: number) {
return n * 2 * Math.random() - n;
return n * Math.random();
}
export function deepClone<T>(obj: T) {