core/state/pruner: fix state bloom sync permission in Windows

This commit is contained in:
Péter Szilágyi 2021-08-10 10:38:49 +03:00
parent 97bd6cd216
commit 3b38a83274
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ func (bloom *stateBloom) Commit(filename, tempname string) error {
return err
}
// Ensure the file is synced to disk
f, err := os.Open(tempname)
f, err := os.OpenFile(tempname, os.O_RDWR, 0666)
if err != nil {
return err
}