IncrementExecutionCount is a helper function for external packages to increment the unexported count.
(opts *TxOptions)
| 94 | // IncrementExecutionCount is a helper function for external packages |
| 95 | // to increment the unexported count. |
| 96 | func IncrementExecutionCount(opts *TxOptions) { |
| 97 | opts.executionCount++ |
| 98 | } |
| 99 | |
| 100 | func (o TxOptions) ExecutionCount() int { |
| 101 | return o.executionCount |
no outgoing calls