mirror of https://github.com/status-im/op-geth.git
Removed logs from tests and updated rlp encoding to include byte slices
This commit is contained in:
parent
74bc45116a
commit
0747aa3a3b
2
rlp.go
2
rlp.go
|
@ -132,7 +132,7 @@ func Encode(object interface{}) []byte {
|
|||
|
||||
case []byte:
|
||||
// Cast the byte slice to a string
|
||||
//buff.Write(Encode(string(t)))
|
||||
buff.Write(Encode(string(t)))
|
||||
|
||||
case []interface{}, []string:
|
||||
// Inline function for writing the slice header
|
||||
|
|
12
rlp_test.go
12
rlp_test.go
|
@ -7,13 +7,14 @@ import (
|
|||
|
||||
func TestEncode(t *testing.T) {
|
||||
strRes := "Cdog"
|
||||
|
||||
bytes := Encode("dog")
|
||||
|
||||
str := string(bytes)
|
||||
if str != strRes {
|
||||
t.Error(fmt.Sprintf("Expected %q, got %q", strRes, str))
|
||||
}
|
||||
dec,_ := Decode(bytes, 0)
|
||||
fmt.Printf("raw: %v encoded: %q == %v\n", dec, str, "dog")
|
||||
//dec,_ := Decode(bytes, 0)
|
||||
|
||||
sliceRes := "\x83CdogCgodCcat"
|
||||
strs := []string{"dog", "god", "cat"}
|
||||
|
@ -23,8 +24,7 @@ func TestEncode(t *testing.T) {
|
|||
t.Error(fmt.Sprintf("Expected %q, got %q", sliceRes, slice))
|
||||
}
|
||||
|
||||
dec,_ = Decode(bytes, 0)
|
||||
fmt.Printf("raw: %v encoded: %q == %v\n", dec, slice, strs)
|
||||
//dec,_ = Decode(bytes, 0)
|
||||
}
|
||||
|
||||
func TestMultiEncode(t *testing.T) {
|
||||
|
@ -42,10 +42,8 @@ func TestMultiEncode(t *testing.T) {
|
|||
}
|
||||
|
||||
bytes := Encode(inter)
|
||||
fmt.Printf("%q\n", bytes)
|
||||
|
||||
dec, _ := Decode(bytes, 0)
|
||||
fmt.Println(dec)
|
||||
Decode(bytes, 0)
|
||||
}
|
||||
|
||||
func BenchmarkEncodeDecode(b *testing.B) {
|
||||
|
|
Loading…
Reference in New Issue