github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/dryrun_state.go (about) 1 package models 2 3 // DryrunState stores the TEAL eval step data 4 type DryrunState struct { 5 // Error evaluation error if any 6 Error string `json:"error,omitempty"` 7 8 // Line line number 9 Line uint64 `json:"line"` 10 11 // Pc program counter 12 Pc uint64 `json:"pc"` 13 14 // Scratch 15 Scratch []TealValue `json:"scratch,omitempty"` 16 17 // Stack 18 Stack []TealValue `json:"stack"` 19 }