mirror of https://github.com/status-im/op-geth.git
core/state/pruner: fix state bloom sync permission in Windows
This commit is contained in:
parent
97bd6cd216
commit
3b38a83274
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue