Commit 21fca938 authored by Taylor Gerring's avatar Taylor Gerring

Output filter ID as hex

parent 704914be
......@@ -380,7 +380,7 @@ func (p *EthereumApi) NewWhisperFilter(args *WhisperFilterArgs, reply *interface
}
id = p.xeth().Whisper().Watch(opts)
p.messages[id] = &whisperFilter{timeout: time.Now()}
*reply = id
*reply = toHex(big.NewInt(int64(id)).Bytes())
return nil
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment