lnd.xprv/channeldb/kvdb
Olaoluwa Osuntokun fc808ac538
channeldb/kvdb: create new package for an abstract kv store
In this commit, we create a new package `kvdb`, which is meant to serve
as the basis for any future database abstractions within `lnd`. Rather
than directly use the `walletdb` package (which we base off of), we
instead use a series of type-aliases to re-type the fundamental
types/interfaces of the `walletdb` package. This lets us type
`kvdb.RwTx` instead of `walletdb.ReadWriteTransaction` everywhere.
Additionally, our usage of type-aliases is also intended to create an
easy pathway in the future wherein we can gradually re-defined or
re-implement these types to wean off of the `walletdb` package.
2020-03-18 19:34:45 -07:00
..
bbolt.go channeldb/kvdb: create new package for an abstract kv store 2020-03-18 19:34:45 -07:00
interface.go channeldb/kvdb: create new package for an abstract kv store 2020-03-18 19:34:45 -07:00