diff options
| author | Pieter Wuille <[email protected]> | 2012-09-04 18:12:00 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-10-20 23:08:57 +0200 |
| commit | e1bfbab8029c33102889d7d970da5b6cc32ff75b (patch) | |
| tree | c96ed4dca6cbca2791096fe95e2e866c06016a6a /src/init.cpp | |
| parent | LevelDB block and coin databases (diff) | |
| download | discoin-e1bfbab8029c33102889d7d970da5b6cc32ff75b.tar.xz discoin-e1bfbab8029c33102889d7d970da5b6cc32ff75b.zip | |
Add LevelDB MemEnv support
Support LevelDB memory-backed environments, and use them in unit tests.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 30f0d0049..4d5720306 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -652,7 +652,7 @@ bool AppInit2() uiInterface.InitMessage(_("Loading block index...")); printf("Loading block index...\n"); nStart = GetTimeMillis(); - pblocktree = new CBlockTreeDB("cr+"); + pblocktree = new CBlockTreeDB(); pcoinsdbview = new CCoinsViewDB(); pcoinsTip = new CCoinsViewCache(*pcoinsdbview); |