(tx *types.Transaction, r *types.ReceiptData, index int)
| 280 | } |
| 281 | |
| 282 | func (e *executor) execDelLocal(tx *types.Transaction, r *types.ReceiptData, index int) (*types.LocalDBSet, error) { |
| 283 | exec := e.loadDriver(tx, index) |
| 284 | return exec.ExecDelLocal(tx, r, index) |
| 285 | } |
| 286 | |
| 287 | func (e *executor) getNoneDriver() drivers.Driver { |
| 288 | none := e.exec.noneDriverPool.Get().(drivers.Driver) |
no test coverage detected