mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
miner: replace use of 'self' as receiver name (#21113)
This commit is contained in:
parent
b4a2681120
commit
48e3b95e77
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue