| 47 | const ContextVersion uint32 = 0 |
| 48 | |
| 49 | type SoloService struct { |
| 50 | Account *account.Account |
| 51 | poolActor *actorTypes.TxPoolActor |
| 52 | incrValidator *increment.IncrementValidator |
| 53 | existCh chan interface{} |
| 54 | genBlockInterval time.Duration |
| 55 | pid *actor.PID |
| 56 | sub *events.ActorSubscriber |
| 57 | } |
| 58 | |
| 59 | func NewSoloService(bkAccount *account.Account, txpool *actor.PID) (*SoloService, error) { |
| 60 | service := &SoloService{ |
nothing calls this directly
no outgoing calls
no test coverage detected