DryRunResult
type DryRunResult
The result of a simulation (dry run), which includes the effects of the transaction, any errors that may have occurred, and intermediate results for each command.
type DryRunResult struct {
// The error that occurred during dry run execution, if any.
Error *string
// The intermediate results for each command of the dry run execution,
// including contents of mutated references and return values.
Results []DryRunEffect
// The transaction block representing the dry run execution.
Transaction *SignedTransaction
// The effects of the transaction execution.
Effects **TransactionEffects
}
func (*DryRunResult) Destroy
func (r *DryRunResult) Destroy()