···10481048 return;
10491049 }
1050105010511051- const date = new Date(entry.createdAt);
10521052- const diff = Date.now() - date.getTime();
10531053- if (idx !== length - 1 && diff / (1000 * 60 * 60) > 72) {
10541054- return;
10511051+ // If it's not the last entry, check if the next entry ahead of this one
10521052+ // was made within the last 72 hours.
10531053+ if (idx !== length - 1) {
10541054+ const next = logs[idx + 1]!;
10551055+ const date = new Date(next.createdAt);
10561056+ const diff = Date.now() - date.getTime();
10571057+10581058+ if (diff / (1_000 * 60 * 60) > 72) {
10591059+ return;
10601060+ }
10551061 }
1056106210571063 /** keys that potentially signed this operation */