Skip to content

Commit dc9a803

Browse files
authored
Merge pull request #2698 from CortexFoundation/dev
enable fsnotify watcher on linux/arm64
2 parents d934507 + b6610ed commit dc9a803

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

accounts/keystore/watch.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +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
17+
//go:build (darwin && !ios && cgo) || freebsd || linux || netbsd || solaris
18+
// +build darwin,!ios,cgo freebsd linux netbsd solaris
1819

1920
package keystore
2021

accounts/keystore/watch_fallback.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +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)
17+
//go:build (darwin && !cgo) || ios || windows || (!darwin && !freebsd && !linux && !netbsd && !solaris)
18+
// +build darwin,!cgo ios windows !darwin,!freebsd,!linux,!netbsd,!solaris
1819

1920
// This is the fallback implementation of directory watching.
2021
// It is used on unsupported platforms.

0 commit comments

Comments
 (0)