Skip to content

Commit

Permalink
fix(api): set transaction expiry to 5 minutes (#2606)
Browse files Browse the repository at this point in the history
  • Loading branch information
n13 authored Apr 3, 2024
1 parent 75496eb commit 5f06e99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/boot/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const signTransaction = async function (actions, options = {}) {
},
{
blocksBehind: 3,
expireSeconds: 30,
expireSeconds: 300,
...options
}
)
Expand All @@ -35,7 +35,7 @@ const signTransaction = async function (actions, options = {}) {
},
{
blocksBehind: 3,
expireSeconds: 30
expireSeconds: 300
}
)
transactionId = result.transaction_id
Expand Down

0 comments on commit 5f06e99

Please sign in to comment.