From 35841e51901149a496645b3c3c6be4ec7a58e6c6 Mon Sep 17 00:00:00 2001 From: obscuren Date: Tue, 10 Mar 2015 20:16:53 +0100 Subject: id to hex --- rpc/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/api.go b/rpc/api.go index 0abed3c14..511b819c1 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -195,7 +195,7 @@ func (self *EthereumApi) NewFilterString(args string, reply *interface{}) error id = self.filterManager.InstallFilter(filter) self.logs[id] = &logFilter{timeout: time.Now()} - *reply = id + *reply = i2hex(id) return nil } -- cgit v1.2.3