(ch chan<- core.RemovedLogsEvent)
| 153 | } |
| 154 | |
| 155 | func (b *APIBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription { |
| 156 | return b.cpc.BlockChain().SubscribeRemovedLogsEvent(ch) |
| 157 | } |
| 158 | |
| 159 | func (b *APIBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription { |
| 160 | return b.cpc.BlockChain().SubscribeChainEvent(ch) |
nothing calls this directly
no test coverage detected