diff options
Diffstat (limited to 'rlp.go')
-rw-r--r-- | rlp.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |