mirror of https://github.com/status-im/op-geth.git
trie: fixed tests
This commit is contained in:
parent
c590b505ed
commit
a40a91d60f
|
@ -12,7 +12,7 @@ import (
|
||||||
type Db map[string][]byte
|
type Db map[string][]byte
|
||||||
|
|
||||||
func (self Db) Get(k []byte) ([]byte, error) { return self[string(k)], nil }
|
func (self Db) Get(k []byte) ([]byte, error) { return self[string(k)], nil }
|
||||||
func (self Db) Put(k, v []byte) { self[string(k)] = v }
|
func (self Db) Put(k, v []byte) error { self[string(k)] = v; return nil }
|
||||||
|
|
||||||
// Used for testing
|
// Used for testing
|
||||||
func NewEmpty() *Trie {
|
func NewEmpty() *Trie {
|
||||||
|
|
Loading…
Reference in New Issue