good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 3b38a832 authored by Péter Szilágyi's avatar Péter Szilágyi
Browse files

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

parent 97bd6cd2
Loading
......@@ -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