clean up
All checks were successful
Tests / Run integration tests (pull_request) Successful in 3m26s
Tests / Run compliance tests (pull_request) Successful in 3m47s

This commit is contained in:
Roy Crihfield 2024-07-11 19:31:43 +08:00
parent ee48b656a1
commit 419a95001b
2 changed files with 2 additions and 5 deletions

View File

@ -119,7 +119,6 @@ func createReader() (pkg.Reader, *params.ChainConfig, node.Info) {
}, },
}, },
ChainConfig: chainConf, ChainConfig: chainConf,
// Mode: mode,
Path: path, Path: path,
AncientPath: ancientPath, AncientPath: ancientPath,
Url: url, Url: url,

View File

@ -47,9 +47,8 @@ type EthDBReader struct {
} }
type EthDBReaderConfig struct { type EthDBReaderConfig struct {
TrieConfig *triedb.Config TrieConfig *triedb.Config
ChainConfig *params.ChainConfig ChainConfig *params.ChainConfig
// Mode string
Path, AncientPath, Url string Path, AncientPath, Url string
DBCacheSize int DBCacheSize int
} }
@ -57,7 +56,6 @@ type EthDBReaderConfig struct {
// NewEthDBReader creates a new Reader using LevelDB // NewEthDBReader creates a new Reader using LevelDB
func NewEthDBReader(conf EthDBReaderConfig) (*EthDBReader, error) { func NewEthDBReader(conf EthDBReaderConfig) (*EthDBReader, error) {
opts := rawdb.OpenOptions{ opts := rawdb.OpenOptions{
// Type: conf.Mode,
Directory: conf.Path, Directory: conf.Path,
AncientsDirectory: conf.AncientPath, AncientsDirectory: conf.AncientPath,
Namespace: "eth-statediff-service", Namespace: "eth-statediff-service",