Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
6f8a2d6b
Commit
6f8a2d6b
authored
Mar 13, 2015
by
Felix Lange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eth: add hook for database creation
parent
58d9d98d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
backend.go
eth/backend.go
+10
-2
No files found.
eth/backend.go
View file @
6f8a2d6b
...
@@ -61,6 +61,10 @@ type Config struct {
...
@@ -61,6 +61,10 @@ type Config struct {
MinerThreads
int
MinerThreads
int
AccountManager
*
accounts
.
Manager
AccountManager
*
accounts
.
Manager
// NewDB is used to create databases.
// If nil, the default is to create leveldb databases on disk.
NewDB
func
(
path
string
)
(
ethutil
.
Database
,
error
)
}
}
func
(
cfg
*
Config
)
parseBootNodes
()
[]
*
discover
.
Node
{
func
(
cfg
*
Config
)
parseBootNodes
()
[]
*
discover
.
Node
{
...
@@ -136,11 +140,15 @@ func New(config *Config) (*Ethereum, error) {
...
@@ -136,11 +140,15 @@ func New(config *Config) (*Ethereum, error) {
// Boostrap database
// Boostrap database
servlogger
:=
logger
.
New
(
config
.
DataDir
,
config
.
LogFile
,
config
.
LogLevel
,
config
.
LogFormat
)
servlogger
:=
logger
.
New
(
config
.
DataDir
,
config
.
LogFile
,
config
.
LogLevel
,
config
.
LogFormat
)
blockDb
,
err
:=
ethdb
.
NewLDBDatabase
(
path
.
Join
(
config
.
DataDir
,
"blockchain"
))
newdb
:=
config
.
NewDB
if
newdb
==
nil
{
newdb
=
func
(
path
string
)
(
ethutil
.
Database
,
error
)
{
return
ethdb
.
NewLDBDatabase
(
path
)
}
}
blockDb
,
err
:=
newdb
(
path
.
Join
(
config
.
DataDir
,
"blockchain"
))
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
stateDb
,
err
:=
ethdb
.
NewLDBDatabase
(
path
.
Join
(
config
.
DataDir
,
"state"
))
stateDb
,
err
:=
newdb
(
path
.
Join
(
config
.
DataDir
,
"state"
))
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment