Skip to content

Commit e214602

Browse files
committed
enable fsnotify watcher on linux/arm64
1 parent 431c3ca commit e214602

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

accounts/keystore/watch.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with The go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

17-
//go:build (darwin && !ios && cgo) || freebsd || (linux && !arm64) || netbsd || solaris
18-
// +build darwin,!ios,cgo freebsd linux,!arm64 netbsd solaris
17+
//go:build (darwin && !ios && cgo) || freebsd || linux || netbsd || solaris
18+
// +build darwin,!ios,cgo freebsd linux netbsd solaris
1919

2020
package keystore
2121

accounts/keystore/watch_fallback.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with The go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

17-
//go:build (darwin && !cgo) || ios || (linux && arm64) || windows || (!darwin && !freebsd && !linux && !netbsd && !solaris)
18-
// +build darwin,!cgo ios linux,arm64 windows !darwin,!freebsd,!linux,!netbsd,!solaris
17+
//go:build (darwin && !cgo) || ios || windows || (!darwin && !freebsd && !linux && !netbsd && !solaris)
18+
// +build darwin,!cgo ios windows !darwin,!freebsd,!linux,!netbsd,!solaris
1919

2020
// This is the fallback implementation of directory watching.
2121
// It is used on unsupported platforms.

0 commit comments

Comments
 (0)