merkleeyes
merkleeyes copied to clipboard
DEPRECATED: Merkle-ized data store
If a Merkleeyes LevelDB file is truncated (e.g. due to power failure or backup-and-restore), Merkleeyes can panic on startup, throwing: ``` no existing db, creating new db loading existing db...
@zramsay commented on [Wed Aug 16 2017](https://github.com/tendermint/tmlibs/issues/37) @ethanfrey commented on [Wed Jan 04 2017](https://github.com/tendermint/go-merkle/issues/8) I spent a lot of time trying to debug some panics during benchmarking and realized that...
@zramsay commented on [Wed Aug 16 2017](https://github.com/tendermint/tmlibs/issues/38) @jaekwon commented on [Fri Jan 06 2017](https://github.com/tendermint/go-merkle/issues/11) EthanFrey wrote up a proposal here: https://github.com/ethanfrey/go-merkle/blob/immutibility/IMMUTABILITY.md TODO: comment on it. --- @jaekwon commented on [Fri...
@zramsay commented on [Wed Aug 16 2017](https://github.com/tendermint/tmlibs/issues/39) @jaekwon commented on [Fri Jan 06 2017](https://github.com/tendermint/go-merkle/issues/12) The problem w/ benchmarking using Golang's Benchmark system is that it's not a long-term persistent benchmark....
@zramsay commented on [Wed Aug 16 2017](https://github.com/tendermint/tmlibs/issues/40) @rigelrozanski commented on [Wed Jan 11 2017](https://github.com/tendermint/go-merkle/issues/18) This can make app development cleaner by removing the need for the client to track persistence....
@zramsay commented on [Wed Aug 16 2017](https://github.com/tendermint/tmlibs/issues/41) @ebuchman commented on [Fri Jan 13 2017](https://github.com/tendermint/go-merkle/issues/20) error came up randomly after working fine for a bit ``` panic: Paniced on a Sanity...
v0.2.2 hotfix because we weren't starting the server after tmlibs update (same issue we fixed in test, should have caught here too). So we should add an integration test that...
@jaekwon @bucky
They are very useful. Not just for queries in our apps, but to make proofs. "Give me Invoice 5 from rigel" (Get with proof on primary key - (creator, invoice...
- [ ] expose go interfaces for the persistence layer - [ ] C wrapper around the go interfaces to enable users to import a persistence layer into any ABCI...