Executor executor struct
| 41 | |
| 42 | // Executor executor struct |
| 43 | type Executor struct { |
| 44 | disableExecLocal bool |
| 45 | disableLocal bool |
| 46 | client queue.Client |
| 47 | qclient client.QueueProtocolAPI |
| 48 | grpccli types.Chain33Client |
| 49 | pluginEnable map[string]bool |
| 50 | alias map[string]string |
| 51 | noneDriverPool *sync.Pool |
| 52 | } |
| 53 | |
| 54 | func execInit(cfg *typ.Chain33Config) { |
| 55 | pluginmgr.InitExec(cfg) |
nothing calls this directly
no outgoing calls
no test coverage detected