We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 677c4cd + d412ac2 commit 63d4009Copy full SHA for 63d4009
client/v2/common/models/dryrun_txn_result.go
@@ -9,7 +9,14 @@ type DryrunTxnResult struct {
9
// AppCallTrace
10
AppCallTrace []DryrunState `json:"app-call-trace,omitempty"`
11
12
- // Cost execution cost of app call transaction
+ // BudgetAdded budget added during execution of app call transaction.
13
+ BudgetAdded uint64 `json:"budget-added,omitempty"`
14
+
15
+ // BudgetConsumed budget consumed during execution of app call transaction.
16
+ BudgetConsumed uint64 `json:"budget-consumed,omitempty"`
17
18
+ // Cost net cost of app execution. Field is DEPRECATED and is subject for removal.
19
+ // Instead, use `budget-added` and `budget-consumed.
20
Cost uint64 `json:"cost,omitempty"`
21
22
// Disassembly disassembled program line by line.
0 commit comments