Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate updated API client code #316

Merged
merged 8 commits into from
Jun 2, 2022
9 changes: 8 additions & 1 deletion client/v2/common/models/dryrun_txn_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ type DryrunTxnResult struct {
// AppCallTrace
AppCallTrace []DryrunState `json:"app-call-trace,omitempty"`

// Cost execution cost of app call transaction
// BudgetAdded budget added during execution of app call transaction.
BudgetAdded uint64 `json:"budget-added,omitempty"`

// BudgetConsumed budget consumed during execution of app call transaction.
BudgetConsumed uint64 `json:"budget-consumed,omitempty"`

// Cost net cost of app execution. Field is DEPRECATED and is subject for removal.
// Instead, use `budget-added` and `budget-consumed.
Cost uint64 `json:"cost,omitempty"`

// Disassembly disassembled program line by line.
Expand Down