aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/qwhisper/message.go
blob: 3a80381ff96a9c5c6ed35b03503d4371c2c52d16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package qwhisper

import (
    "github.com/ethereum/go-ethereum/crypto"
    "github.com/ethereum/go-ethereum/ethutil"
    "github.com/ethereum/go-ethereum/whisper"
)

type Message struct {
    ref     *whisper.Message
    Flags   int32  `json:"flags"`
    Payload string `json:"payload"`
    From    string `json:"from"`
}

func ToQMessage(msg *whisper.Message) *Message {
    return &Message{
        ref:     msg,
        Flags:   int32(msg.Flags),
        Payload: ethutil.Bytes2Hex(msg.Payload),
        From:    ethutil.Bytes2Hex(crypto.FromECDSAPub(msg.Recover())),
    }
}