@@ -244,11 +244,11 @@ type CallExecuted struct {
244244 // Query ID of the change request.
245245 QueryID uint64 `tlb:"## 64"`
246246
247- ID * big.Int `tlb:"## 256"` // ID of the operation that was executed.
248- Index uint64 `tlb:"## 64"` // Index of the call in the operation
249- Target address.Address `tlb:"addr"` // Address of the target contract to call.
250- Value tlb.Coins `tlb:"."` // Value in TONs to send with the call.
251- Data * cell.Cell `tlb:"^"` // Data to send with the call - message body.
247+ ID * big.Int `tlb:"## 256"` // ID of the operation that was executed.
248+ Index uint64 `tlb:"## 64"` // Index of the call in the operation
249+ Target * address.Address `tlb:"addr"` // Address of the target contract to call.
250+ Value tlb.Coins `tlb:"."` // Value in TONs to send with the call.
251+ Data * cell.Cell `tlb:"^"` // Data to send with the call - message body.
252252}
253253
254254// Emitted when a call is performed via bypasser.
@@ -257,10 +257,10 @@ type BypasserCallExecuted struct {
257257 // Query ID of the change request.
258258 QueryID uint64 `tlb:"## 64"`
259259
260- Index uint64 `tlb:"## 64"` // Index of the call in the operation
261- Target address.Address `tlb:"addr"` // Address of the target contract to call.
262- Value tlb.Coins `tlb:"."` // Value in TONs to send with the call.
263- Data * cell.Cell `tlb:"^"` // Data to send with the call - message body.
260+ Index uint64 `tlb:"## 64"` // Index of the call in the operation
261+ Target * address.Address `tlb:"addr"` // Address of the target contract to call.
262+ Value tlb.Coins `tlb:"."` // Value in TONs to send with the call.
263+ Data * cell.Cell `tlb:"^"` // Data to send with the call - message body.
264264}
265265
266266// Emitted when operation `id` is cancelled.
0 commit comments