Skip to content

Commit

Permalink
fix validUntil on sendTransaction ton
Browse files Browse the repository at this point in the history
  • Loading branch information
perfogic committed Dec 10, 2024
1 parent 56d8c0c commit 11edf26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Balance/hooks/useTonBridgeHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ const useTonBridgeHandler = ({
});

const tx = await tonConnectUI.sendTransaction({
validUntil: TON_MESSAGE_VALID_UNTIL,
validUntil: Date.now() + 5 * 60 * 1000,
messages: [
{
address: toAddress, // dia chi token
Expand Down

0 comments on commit 11edf26

Please sign in to comment.