Initialize public key (#1332)
This commit is contained in:
parent
697c72ffdf
commit
30dbacdcca
|
@ -499,7 +499,10 @@ func (api *PublicAPI) processPFSMessage(msg *whisper.Message) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
var publicKey *ecdsa.PublicKey
|
publicKey, err := crypto.UnmarshalPubkey(msg.Sig)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
response, err := api.service.protocol.HandleMessage(privateKey, publicKey, msg.Payload)
|
response, err := api.service.protocol.HandleMessage(privateKey, publicKey, msg.Payload)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue