diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-16 00:28:51 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-16 00:28:51 +0800 |
commit | c96e504adb4a547b5e293d6930626cf2f9401ac2 (patch) | |
tree | 371abf61d221e6f39441b986ff65dc69318b1822 | |
parent | 01a6db93241a01e98a0467b628423c9b5b1361cb (diff) | |
download | dexon-c96e504adb4a547b5e293d6930626cf2f9401ac2.tar.gz dexon-c96e504adb4a547b5e293d6930626cf2f9401ac2.tar.zst dexon-c96e504adb4a547b5e293d6930626cf2f9401ac2.zip |
Typo
-rw-r--r-- | ui/qt/qwhisper/whisper.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/qwhisper/whisper.go b/ui/qt/qwhisper/whisper.go index 3e1ca7ab9..62c4c743b 100644 --- a/ui/qt/qwhisper/whisper.go +++ b/ui/qt/qwhisper/whisper.go @@ -56,7 +56,7 @@ func (self *Whisper) NewIdentity() string { return toHex(self.Whisper.NewIdentity().D.Bytes()) } -func (self *Whisper) HasIdentify(key string) bool { +func (self *Whisper) HasIdentity(key string) bool { return self.Whisper.HasIdentity(crypto.ToECDSA(fromHex(key))) } |