aboutsummaryrefslogtreecommitdiffstats
path: root/trie/secure_trie.go
diff options
context:
space:
mode:
Diffstat (limited to 'trie/secure_trie.go')
-rw-r--r--trie/secure_trie.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/trie/secure_trie.go b/trie/secure_trie.go
index c6ef90351..f49547ed8 100644
--- a/trie/secure_trie.go
+++ b/trie/secure_trie.go
@@ -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))
}