@@ -236,11 +236,11 @@ type CallExecuted struct {
236236 // Query ID of the change request.
237237 QueryID uint64 `tlb:"## 64"`
238238
239- ID * big.Int `tlb:"## 256"` // ID of the operation that was executed.
240- Index uint64 `tlb:"## 64"` // Index of the call in the operation
241- Target address.Address `tlb:"addr"` // Address of the target contract to call.
242- Value tlb.Coins `tlb:"."` // Value in TONs to send with the call.
243- Data * cell.Cell `tlb:"^"` // Data to send with the call - message body.
239+ ID * big.Int `tlb:"## 256"` // ID of the operation that was executed.
240+ Index uint64 `tlb:"## 64"` // Index of the call in the operation
241+ Target * address.Address `tlb:"addr"` // Address of the target contract to call.
242+ Value tlb.Coins `tlb:"."` // Value in TONs to send with the call.
243+ Data * cell.Cell `tlb:"^"` // Data to send with the call - message body.
244244}
245245
246246// Emitted when a call is performed via bypasser.
@@ -249,10 +249,10 @@ type BypasserCallExecuted struct {
249249 // Query ID of the change request.
250250 QueryID uint64 `tlb:"## 64"`
251251
252- Index uint64 `tlb:"## 64"` // Index of the call in the operation
253- Target address.Address `tlb:"addr"` // Address of the target contract to call.
254- Value tlb.Coins `tlb:"."` // Value in TONs to send with the call.
255- Data * cell.Cell `tlb:"^"` // Data to send with the call - message body.
252+ Index uint64 `tlb:"## 64"` // Index of the call in the operation
253+ Target * address.Address `tlb:"addr"` // Address of the target contract to call.
254+ Value tlb.Coins `tlb:"."` // Value in TONs to send with the call.
255+ Data * cell.Cell `tlb:"^"` // Data to send with the call - message body.
256256}
257257
258258// Emitted when operation `id` is cancelled.
0 commit comments