Fixed test

This commit is contained in:
obscuren
2014-11-21 10:48:07 -05:00
parent 9b8a12b4b5
commit 8cf9ed0ea5
2 changed files with 4 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ package ptrie
import (
"bytes"
"container/list"
"fmt"
"sync"
"github.com/ethereum/go-ethereum/crypto"
@@ -198,7 +199,7 @@ func (self *Trie) get(node Node, key []byte) Node {
case *FullNode:
return self.get(node.branch(key[0]), key[1:])
default:
panic("Invalid node")
panic(fmt.Sprintf("%T: invalid node: %v", node, node))
}
}