Skip to content

Commit 63d4009

Browse files
authored
Merge pull request #316 from algoidurovic/generate_api
Generate updated API client code
2 parents 677c4cd + d412ac2 commit 63d4009

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

client/v2/common/models/dryrun_txn_result.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ type DryrunTxnResult struct {
99
// AppCallTrace
1010
AppCallTrace []DryrunState `json:"app-call-trace,omitempty"`
1111

12-
// Cost execution cost of app call transaction
12+
// 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.
1320
Cost uint64 `json:"cost,omitempty"`
1421

1522
// Disassembly disassembled program line by line.

0 commit comments

Comments
 (0)