aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/qwhisper/message.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-06-20 20:37:00 +0800
committerobscuren <geffobscura@gmail.com>2015-06-20 20:37:00 +0800
commit42a14b8a09d812dbd7d1b05f145e6881376f320b (patch)
treec3e2ca55a7b67bce4558cdae3ac395568538d76a /ui/qt/qwhisper/message.go
parente4f9ec886b498c5744633a4db1c735eec11dc71b (diff)
downloaddexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.gz
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.bz2
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.lz
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.xz
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.zst
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.zip
mist: R.I.P.
/"""""/""""""". / / \ __ / / \ || /____ / \ || | | In Loving | || | | Memory | || | | | || | | 2014-2015 | || | | * * * * | _||_ | | *\/* *\/* | | TT | | | *_\_ / ...""""""| || |.""....""""""""."" | | \/.."""""..."""\ || /.""".......""""... | |...."""""""........""""""^^^^"......."""""""".." |......"""""""""""""""........"""""...."""""..""-Jeff W.
Diffstat (limited to 'ui/qt/qwhisper/message.go')
-rw-r--r--ui/qt/qwhisper/message.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/ui/qt/qwhisper/message.go b/ui/qt/qwhisper/message.go
deleted file mode 100644
index f8bed8a2d..000000000
--- a/ui/qt/qwhisper/message.go
+++ /dev/null
@@ -1,23 +0,0 @@
-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())),
- }
-}