summary refs log tree commit diff stats
path: root/tests/concepts/libs/trie_database.nim
blob: a45c64842112228a67510d2e20e3340d5f197940 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
type
  KeccakHash* = object
    data*: string

  BytesRange* = object
    bytes*: string

  TrieDatabase* = concept db
    put(var db, KeccakHash, string) is bool
    del(var db, KeccakHash) is bool
    get(db, KeccakHash) is string