pub trait KeyedHashDB: HashDB<KeccakHasher, DBValue> {
    fn keys(&self) -> HashMap<H256, i32>;
}
Expand description

expose keys of a hashDB for debugging or tests (slow).

Required methods

Primarily use for tests, highly inefficient.

Implementors