Fixed whisper "to" filtering. Closes #283
This commit is contained in:
@ -11,11 +11,11 @@ type Message struct {
|
||||
Flags byte
|
||||
Signature []byte
|
||||
Payload []byte
|
||||
Sent uint64
|
||||
Sent int64
|
||||
}
|
||||
|
||||
func NewMessage(payload []byte) *Message {
|
||||
return &Message{Flags: 0, Payload: payload}
|
||||
return &Message{Flags: 0, Payload: payload, Sent: time.Now().Unix()}
|
||||
}
|
||||
|
||||
func (self *Message) hash() []byte {
|
||||
|
Reference in New Issue
Block a user