Fix log statement
This commit is contained in:
parent
26873db199
commit
aa82f786c7
1 changed files with 1 additions and 1 deletions
|
@ -675,7 +675,7 @@ void BlockchainLMDB::open(const std::string& filename)
|
||||||
lmdb_db_open(txn, LMDB_OUTPUT_GINDICES, MDB_CREATE, m_output_gindices, "Failed to open db handle for m_output_gindices");
|
lmdb_db_open(txn, LMDB_OUTPUT_GINDICES, MDB_CREATE, m_output_gindices, "Failed to open db handle for m_output_gindices");
|
||||||
*************************************************/
|
*************************************************/
|
||||||
|
|
||||||
lmdb_db_open(txn, LMDB_SPENT_KEYS, MDB_CREATE, m_spent_keys, "Failed to open db handle for m_outputs");
|
lmdb_db_open(txn, LMDB_SPENT_KEYS, MDB_CREATE, m_spent_keys, "Failed to open db handle for m_spent_keys");
|
||||||
|
|
||||||
mdb_set_dupsort(txn, m_output_amounts, compare_uint64);
|
mdb_set_dupsort(txn, m_output_amounts, compare_uint64);
|
||||||
mdb_set_dupsort(txn, m_tx_outputs, compare_uint64);
|
mdb_set_dupsort(txn, m_tx_outputs, compare_uint64);
|
||||||
|
|
Loading…
Reference in a new issue