diff options
Diffstat (limited to 'ethereum/main.go')
-rw-r--r-- | ethereum/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereum/main.go b/ethereum/main.go index 6c5c71bf3..070d3c201 100644 --- a/ethereum/main.go +++ b/ethereum/main.go @@ -71,7 +71,7 @@ func main() { } // Leave the Println. This needs clean output for piping - fmt.Println(block.State().Dump()) + fmt.Printf("%s\n", block.State().Dump()) os.Exit(0) } |