Delet => Delete

This commit is contained in:
obscuren
2015-03-03 12:15:58 +01:00
parent ba0a758d8c
commit bf5365b317
2 changed files with 33 additions and 1 deletions

View File

@ -27,6 +27,6 @@ func (self *SecureTrie) GetString(key string) []byte {
func (self *SecureTrie) Delete(key []byte) Node {
return self.Trie.Delete(crypto.Sha3(key))
}
func (self *SecureTrie) DeletString(key string) Node {
func (self *SecureTrie) DeleteString(key string) Node {
return self.Delete([]byte(key))
}