diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-04-13 16:49:22 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-04-13 17:29:39 +0800 |
commit | fd36448d6afa16ecee7f56f9dc124ef4e231b9f5 (patch) | |
tree | 07ac5b5b6b9eb58314e3500ec5f7d9fdd22ac37f | |
parent | 9d81f4fdd142de698d0129c75d11be8c66ab3f83 (diff) | |
download | go-tangerine-fd36448d6afa16ecee7f56f9dc124ef4e231b9f5.tar go-tangerine-fd36448d6afa16ecee7f56f9dc124ef4e231b9f5.tar.gz go-tangerine-fd36448d6afa16ecee7f56f9dc124ef4e231b9f5.tar.bz2 go-tangerine-fd36448d6afa16ecee7f56f9dc124ef4e231b9f5.tar.lz go-tangerine-fd36448d6afa16ecee7f56f9dc124ef4e231b9f5.tar.xz go-tangerine-fd36448d6afa16ecee7f56f9dc124ef4e231b9f5.tar.zst go-tangerine-fd36448d6afa16ecee7f56f9dc124ef4e231b9f5.zip |
accounts: disable filesystem notifications on ios
-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 08337b608..19d304fcc 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 freebsd linux netbsd solaris windows +// +build darwin,!ios freebsd linux netbsd solaris windows package accounts diff --git a/accounts/watch_fallback.go b/accounts/watch_fallback.go index ff5a2daf1..0b7016167 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 !darwin,!freebsd,!linux,!netbsd,!solaris,!windows +// +build ios !darwin,!freebsd,!linux,!netbsd,!solaris,!windows // This is the fallback implementation of directory watching. // It is used on unsupported platforms. |