Temp work around

This commit is contained in:
obscuren
2014-09-24 20:40:18 +02:00
parent 96fd1ce270
commit 1cb12296f6
3 changed files with 6 additions and 6 deletions

View File

@ -188,9 +188,9 @@ func (self *UiLib) NewFilterString(typ string) int {
func (self *UiLib) Messages(id int) *ethutil.List {
filter := self.eth.GetFilter(id)
if filter != nil {
messages := filter.Find()
messages := ethpipe.ToJSMessages(filter.Find())
return ethpipe.ToJSMessages(messages)
return messages
}
return ethutil.EmptyList()