id to hex

This commit is contained in:
obscuren 2015-03-10 20:16:53 +01:00
parent d9f96293be
commit 35841e5190
1 changed files with 1 additions and 1 deletions

View File

@ -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
}