We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e70388 commit f76aab3Copy full SHA for f76aab3
1 file changed
src/verification/confirmed-block-height-exists/confirmed-block-height-exists.ts
@@ -29,7 +29,8 @@ export function responseConfirmedBlockHeightExists(
29
// Delete me after 1777366800 Thursday, 28 April 2026 at 11:00:00 CEST
30
let lut = lowerQueryWindowBlock.timestamp.toString();
31
const now = Math.round(Date.now() / 1000);
32
- if (now < 1777366800) { // Thursday, 28 April 2026 at 11:00:00 CEST
+ if (now < 1777366800) {
33
+ // Thursday, 28 April 2026 at 11:00:00 CEST
34
lut = dbBlock.timestamp.toString();
35
}
36
0 commit comments