Skip to content

Commit

Permalink
Update transaction expiration ts (#8780)
Browse files Browse the repository at this point in the history
Update transaction expiration timestamp.
  • Loading branch information
may01 authored Dec 31, 2024
1 parent 089a7da commit 2d897b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/ledger-live-common/src/families/aptos/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class AptosAPI {
} else {
try {
const ts = (await this.aptosClient.getLedgerInfo()).ledger_timestamp;
opts.expireTimestamp = Number(Math.ceil(+ts / 1_000_000_000 + 2 * 60)); // in milliseconds
opts.expireTimestamp = Number(Math.ceil(+ts / 1_000_000 + 2 * 60)); // in milliseconds
} catch (_) {
// skip
}
Expand Down

0 comments on commit 2d897b1

Please sign in to comment.