good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 520f2568 authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub
Browse files

Merge pull request #23370 from karalabe/windows-pruning-fix-b

core/state/pruner: fix state bloom sync permission in Windows
parents 97bd6cd2 3b38a832
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment