Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
AskAlexSharov committed Dec 4, 2024
1 parent 6f2e41c commit 3fc035f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erigon-lib/kv/mdbx/kv_mdbx.go
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ func (db *MdbxKV) CHandle() unsafe.Pointer {
// otherwise re-try by RW transaction
// it allow open DB from another process - even if main process holding long RW transaction
func (db *MdbxKV) openDBIs(ctx context.Context, buckets []string) error {
var nonDeprecatedBuckets []string
nonDeprecatedBuckets := make([]string, 0, len(buckets))
for _, name := range buckets {
if db.buckets[name].IsDeprecated {
continue
Expand Down

0 comments on commit 3fc035f

Please sign in to comment.