forked from cerc-io/plugeth
method change
This commit is contained in:
parent
d87aa24885
commit
c8302882c8
@ -45,7 +45,7 @@ func Decompress(dat []byte) ([]byte, error) {
|
|||||||
return buf.Bytes(), nil
|
return buf.Bytes(), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func compressBlock(dat []byte) (ret []byte, n int) {
|
func compressChunk(dat []byte) (ret []byte, n int) {
|
||||||
switch {
|
switch {
|
||||||
case dat[0] == token:
|
case dat[0] == token:
|
||||||
return []byte{token, tokenToken}, 1
|
return []byte{token, tokenToken}, 1
|
||||||
@ -75,7 +75,7 @@ func Compress(dat []byte) []byte {
|
|||||||
|
|
||||||
i := 0
|
i := 0
|
||||||
for i < len(dat) {
|
for i < len(dat) {
|
||||||
b, n := compressBlock(dat[i:])
|
b, n := compressChunk(dat[i:])
|
||||||
buf.Write(b)
|
buf.Write(b)
|
||||||
i += n
|
i += n
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user