mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
540 B
23 lines
540 B
package qwhisper
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"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: "0x" + common.Bytes2Hex(msg.Payload),
|
|
From: "0x" + common.Bytes2Hex(crypto.FromECDSAPub(msg.Recover())),
|
|
}
|
|
}
|
|
|