diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-18 04:31:42 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-18 04:31:42 +0800 |
commit | 3ea99f989ff98432cbfa864d2e7e26628e16cc6f (patch) | |
tree | 45dfc571907fcfc36e415ac3d0f706ef462f1030 /xeth/whisper.go | |
parent | 048d4ec5be5352dcb06f5123e3458b99aa151e6b (diff) | |
parent | 7330c97b5b00255db9dc1ffaff942992f80fb7d1 (diff) | |
download | dexon-3ea99f989ff98432cbfa864d2e7e26628e16cc6f.tar.gz dexon-3ea99f989ff98432cbfa864d2e7e26628e16cc6f.tar.zst dexon-3ea99f989ff98432cbfa864d2e7e26628e16cc6f.zip |
Merge pull request #498 from maran/feature/drytoHex
DRY up the use of toHex in the project and move it to common
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, } } |