fix: inefficient assigns

This commit is contained in:
Richard Ramos 2021-11-01 20:05:36 -04:00
parent a9343b0e86
commit 4e5237df8d
1 changed files with 8 additions and 0 deletions

View File

@ -35,6 +35,10 @@ func main() {
return
}
prvKey, err := crypto.HexToECDSA(key)
if err != nil {
log.Error(err)
return
}
ctx := context.Background()
@ -85,6 +89,10 @@ func write(ctx context.Context, wakuNode *node.WakuNode, msgContent string) {
p.Key = &node.KeyInfo{Kind: node.None}
payload, err := p.Encode(version)
if err != nil {
log.Error("Error encoding the payload: ", err)
return
}
msg := &pb.WakuMessage{
Payload: payload,