Is there a way to wait for the termination of the created transaction? #336
Replies: 1 comment
-
Hi, transactions in TON are asynchronous, it means that each address spawns its own transaction that goes into queue. So it is like transactions chain, in theory it can be no final point (in case of recursive calls, unless we have enough coins). But for most of the cases you can follow this transactions chain and wait for the completion of every transaction spawned by out messages of previous transaction, and repeat it till no more new out messages emitted. Library methods |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
So, for example, I sent a message with
tx, _, err := w.SendWaitTransaction(ctx, msg)
Is there a way to wait for finalization of this transaction?
Beta Was this translation helpful? Give feedback.
All reactions