github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/dryrun_response.go (about)

     1  package models
     2  
     3  // DryrunResponse dryrunResponse contains per-txn debug information from a dryrun.
     4  type DryrunResponse struct {
     5  	// Error
     6  	Error string `json:"error"`
     7  
     8  	// ProtocolVersion protocol version is the protocol version Dryrun was operated
     9  	// under.
    10  	ProtocolVersion string `json:"protocol-version"`
    11  
    12  	// Txns
    13  	Txns []DryrunTxnResult `json:"txns"`
    14  }