From fc8b246109760714a838f4be163cca1dbb998163 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Thu, 10 Sep 2015 14:48:19 +0200 Subject: [PATCH] rlp: move ListSize to raw.go --- rlp/encode.go | 6 ------ rlp/raw.go | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/rlp/encode.go b/rlp/encode.go index 2aeee4721..d73b17c28 100644 --- a/rlp/encode.go +++ b/rlp/encode.go @@ -45,12 +45,6 @@ type Encoder interface { EncodeRLP(io.Writer) error } -// ListSize returns the encoded size of an RLP list with the given -// content size. -func ListSize(contentSize uint64) uint64 { - return uint64(headsize(contentSize)) + contentSize -} - // Encode writes the RLP encoding of val to w. Note that Encode may // perform many small writes in some cases. Consider making w // buffered. diff --git a/rlp/raw.go b/rlp/raw.go index fca445618..33aae6ee5 100644 --- a/rlp/raw.go +++ b/rlp/raw.go @@ -28,6 +28,12 @@ type RawValue []byte var rawValueType = reflect.TypeOf(RawValue{}) +// ListSize returns the encoded size of an RLP list with the given +// content size. +func ListSize(contentSize uint64) uint64 { + return uint64(headsize(contentSize)) + contentSize +} + // Split returns the content of first RLP value and any // bytes after the value as subslices of b. func Split(b []byte) (k Kind, content, rest []byte, err error) { -- GitLab