Update encode.go

This commit is contained in:
kiel barry 2018-05-02 18:35:28 -07:00 committed by GitHub
parent e7e7ade91b
commit 5966fd6574
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,9 +25,9 @@ import (
) )
var ( var (
//EmptyString is a common encoded values useful when implementing EncodeRLP. //EmptyString accepts a common encoded value useful for implementing EncodeRLP.
EmptyString = []byte{0x80} EmptyString = []byte{0x80}
//EmptyList is a common encoded values useful when implementing EncodeRLP. //EmptyList accepts a common encoded value useful for implementing EncodeRLP.
EmptyList = []byte{0xC0} EmptyList = []byte{0xC0}
) )