diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-19 01:23:37 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-19 01:23:37 +0800 |
commit | f9a6038f5b82cad6956c9cbb7f1220d97570632b (patch) | |
tree | 78fb61bed1924b60c3c4d59e5a5a471f55f91de7 /xeth/whisper.go | |
parent | 4d0ae8b0cb32e9de63092bc36022ea4af76cad8b (diff) | |
parent | baca0c2251a2587c136999a91449d9b6f7a6c60f (diff) | |
download | dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.gz dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.bz2 dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.lz dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.xz dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.tar.zst dexon-f9a6038f5b82cad6956c9cbb7f1220d97570632b.zip |
merge
Diffstat (limited to 'xeth/whisper.go')
-rw-r--r-- | xeth/whisper.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xeth/whisper.go b/xeth/whisper.go index c0be4c392..72e1ee04f 100644 --- a/xeth/whisper.go +++ b/xeth/whisper.go @@ -56,7 +56,7 @@ func (self *Whisper) Post(payload string, to, from string, topics []string, prio func (self *Whisper) NewIdentity() string { key := self.Whisper.NewIdentity() - return toHex(crypto.FromECDSAPub(&key.PublicKey)) + return common.ToHex(crypto.FromECDSAPub(&key.PublicKey)) } func (self *Whisper) HasIdentity(key string) bool { @@ -112,9 +112,9 @@ type WhisperMessage struct { func NewWhisperMessage(msg *whisper.Message) WhisperMessage { return WhisperMessage{ ref: msg, - Payload: toHex(msg.Payload), - From: toHex(crypto.FromECDSAPub(msg.Recover())), - To: toHex(crypto.FromECDSAPub(msg.To)), + Payload: common.ToHex(msg.Payload), + From: common.ToHex(crypto.FromECDSAPub(msg.Recover())), + To: common.ToHex(crypto.FromECDSAPub(msg.To)), Sent: msg.Sent, } } |