trie: fixed tests

This commit is contained in:
obscuren 2015-06-21 17:08:47 +02:00
parent c590b505ed
commit a40a91d60f
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import (
type Db map[string][]byte
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
func NewEmpty() *Trie {