mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-05 07:23:10 +00:00
fix: inefficient assigns
This commit is contained in:
parent
a9343b0e86
commit
4e5237df8d
@ -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,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user