diff options
author | Felix Lange <fjl@twurst.com> | 2016-11-28 10:09:58 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-11-28 10:09:58 +0800 |
commit | 5df83e3bd9c434e13dabae496fbb4d96d8d59e18 (patch) | |
tree | 15933497ace0d02bc6e88e2eeab72cb4f8e2a770 | |
parent | 4c8c5e2f7410d850ee6068b46c8b880f733743d4 (diff) | |
download | dexon-5df83e3bd9c434e13dabae496fbb4d96d8d59e18.tar.gz dexon-5df83e3bd9c434e13dabae496fbb4d96d8d59e18.tar.zst dexon-5df83e3bd9c434e13dabae496fbb4d96d8d59e18.zip |
accounts: disable file system watcher on windows
The watcher is unreliable and causes test failures on Windows.
Disable it until we have a better solution.
-rw-r--r-- | accounts/watch.go | 2 | ||||
-rw-r--r-- | accounts/watch_fallback.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/accounts/watch.go b/accounts/watch.go index 309e4d458..472be2df7 100644 --- a/accounts/watch.go +++ b/accounts/watch.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. -// +build darwin,!ios freebsd linux,!arm64 netbsd solaris windows +// +build darwin,!ios freebsd linux,!arm64 netbsd solaris package accounts diff --git a/accounts/watch_fallback.go b/accounts/watch_fallback.go index 7b5e221df..bf971cb1b 100644 --- a/accounts/watch_fallback.go +++ b/accounts/watch_fallback.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. -// +build ios linux,arm64 !darwin,!freebsd,!linux,!netbsd,!solaris,!windows +// +build ios linux,arm64 windows !darwin,!freebsd,!linux,!netbsd,!solaris // This is the fallback implementation of directory watching. // It is used on unsupported platforms. |