浏览代码

Proper delete

obscuren 11 年之前
父节点
当前提交
b55e017e62
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ethutil/bytes.go

+ 1 - 1
ethutil/bytes.go

@@ -18,7 +18,7 @@ func (self Bytes) String() string {
 func DeleteFromByteSlice(s [][]byte, hash []byte) [][]byte {
 	for i, h := range s {
 		if bytes.Compare(h, hash) == 0 {
-			return append(s[:i], s[i+1:]...)
+			return append(s[:i:i], s[i+1:]...)
 		}
 	}