From 5da7ec7c18b0e37cec0950e9656f6cdddc1ae60c Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Wed, 27 Jan 2016 18:01:30 +0200 Subject: cmd, eth, rpc: fix some RPC issues with pending blocks --- cmd/gethrpctest/main.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cmd') diff --git a/cmd/gethrpctest/main.go b/cmd/gethrpctest/main.go index b4530ca51..8522258a9 100644 --- a/cmd/gethrpctest/main.go +++ b/cmd/gethrpctest/main.go @@ -52,6 +52,10 @@ var ( func main() { flag.Parse() + // Enable logging errors, we really do want to see those + glog.SetV(2) + glog.SetToStderr(true) + // Load the test suite to run the RPC against tests, err := tests.LoadBlockTests(*testFile) if err != nil { -- cgit