From faa69bea1cade1d0f8b00814fc0616c5a57f0709 Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Wed, 19 Sep 2018 11:47:09 +0300 Subject: core, eth: fix goimports for Go 1.11 --- eth/downloader/api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eth/downloader') diff --git a/eth/downloader/api.go b/eth/downloader/api.go index 91c6322d4..57ff3d71a 100644 --- a/eth/downloader/api.go +++ b/eth/downloader/api.go @@ -40,8 +40,8 @@ type PublicDownloaderAPI struct { // installSyncSubscription channel. func NewPublicDownloaderAPI(d *Downloader, m *event.TypeMux) *PublicDownloaderAPI { api := &PublicDownloaderAPI{ - d: d, - mux: m, + d: d, + mux: m, installSyncSubscription: make(chan chan interface{}), uninstallSyncSubscription: make(chan *uninstallSyncSubscriptionRequest), } -- cgit