good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 48e3b95e authored by ucwong's avatar ucwong Committed by GitHub
Browse files

miner: replace use of 'self' as receiver name (#21113)

parent b4a26811
No related branches found
No related tags found
No related merge requests found
......@@ -202,6 +202,6 @@ func (miner *Miner) DisablePreseal() {
// SubscribePendingLogs starts delivering logs from pending transactions
// to the given channel.
func (self *Miner) SubscribePendingLogs(ch chan<- []*types.Log) event.Subscription {
return self.worker.pendingLogsFeed.Subscribe(ch)
func (miner *Miner) SubscribePendingLogs(ch chan<- []*types.Log) event.Subscription {
return miner.worker.pendingLogsFeed.Subscribe(ch)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment