Skip to content

Commit

Permalink
chore(ttl): default ttl to 900
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jan 28, 2025
1 parent 4f15fec commit a2d8ae9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/transactionUtils/transactionUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ export function createDefaultAntState(state: any) {
records: {
['@']: {
transactionId: LANDING_PAGE_TXID.toString(),
ttlSeconds: 3600,
ttlSeconds: 900,
},
},
...state,
Expand All @@ -772,7 +772,7 @@ export function createAntStateForOwner(owner: string, targetId?: string) {
records: {
['@']: {
transactionId: targetId ?? LANDING_PAGE_TXID.toString(),
ttlSeconds: 3600,
ttlSeconds: 900,
},
},
});
Expand Down

0 comments on commit a2d8ae9

Please sign in to comment.