Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion execution_chain/db/core_db.nim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
## See `core_db/README.md` for implementation details
##
## This module provides a memory database only. For providing a persistent
## constructor, import `db/code_db/persistent` though avoiding to
## constructor, import `db/core_db/persistent` though avoiding to
## unnecessarily link to the persistent backend library (e.g. `rocksdb`)
## when a memory only database is used.
##
Expand Down
2 changes: 1 addition & 1 deletion execution_chain/db/core_db/persistent.nim
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

## This module automatically pulls in the persistent backend libraries at the
## linking stage (e.g. `rocksdb`) which can be avoided for pure memory DB
## applications by importing `db/code_db/memory_only` (rather than
## applications by importing `db/core_db/memory_only` (rather than
## `db/core_db/persistent`.)
##
## The right way to use this file on a conditional mode is to import it as in
Expand Down
Loading