diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-04-04 11:30:55 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-04-06 02:29:33 +0200 |
commit | b001c871260420c6638d20c1d5039007e235d66c (patch) | |
tree | ee98fa7da0236fa4d60cb5615c2b30b9f7a8b078 /src/walletdb.cpp | |
parent | 430cbad4112781e90f9c5d87443b0b5f7c2a4a08 (diff) |
small indentation, space, formatting fixes (no code changes)
Diffstat (limited to 'src/walletdb.cpp')
-rw-r--r-- | src/walletdb.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/walletdb.cpp b/src/walletdb.cpp index abaf5a0fd1..841553ea6a 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -622,11 +622,11 @@ bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys) bool fSuccess = allOK; Db* pdbCopy = new Db(&dbenv.dbenv, 0); - int ret = pdbCopy->open(NULL, // Txn pointer + int ret = pdbCopy->open(NULL, // Txn pointer filename.c_str(), // Filename - "main", // Logical db name - DB_BTREE, // Database type - DB_CREATE, // Flags + "main", // Logical db name + DB_BTREE, // Database type + DB_CREATE, // Flags 0); if (ret > 0) { |