erigon-pulse/cmd/snapshots/utils/utils.go

21 lines
489 B
Go
Raw Normal View History

package utils
import (
"errors"
"os"
"github.com/ledgerwatch/erigon/ethdb/kv"
"github.com/ledgerwatch/erigon/ethdb/mdbx"
"github.com/ledgerwatch/erigon/log"
)
var ErrUnsupported error = errors.New("unsupported KV type")
2021-06-16 10:57:58 +00:00
func RmTmpFiles(snapshotPath string) error {
return os.Remove(snapshotPath + "/mdbx.lck")
}
func OpenSnapshotKV(configsFunc mdbx.BucketConfigsFunc, path string) kv.RwDB {
return mdbx.NewMDBX(log.New()).WithBucketsConfig(configsFunc).Path(path).MustOpen()
}