Skip to content

Commit

Permalink
Merge pull request #653 from ar-io/default-ttl
Browse files Browse the repository at this point in the history
chore(ttl): default ttl to 900
  • Loading branch information
dtfiedler authored Jan 28, 2025
2 parents c1aee65 + a2d8ae9 commit 20fd825
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 20fd825

Please sign in to comment.