good morning!!!!

Skip to content
Snippets Groups Projects
Commit fde0ddb3 authored by Felix Lange's avatar Felix Lange
Browse files

cmd/rlpdump: remove stray return

parent 117f66e8
No related branches found
No related tags found
No related merge requests found
......@@ -110,8 +110,7 @@ func dump(s *rlp.Stream, depth int) error {
s.List()
defer s.ListEnd()
if size == 0 {
fmt.Printf(ws(depth) + "[]")
return nil
fmt.Print(ws(depth) + "[]")
} else {
fmt.Println(ws(depth) + "[")
for i := 0; ; i++ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment