-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Milestone
Description
Problem
The node.send function currently takes an argument of the type Message this isn't optimal as we cannot expect endusers to know all those fields.
Acceptance Criteria
There are 3 functions, each for sending a message.
Sending to an address:
send(to: UBID, message: Data)Sending to a service:
send(service: UBID, message: Data)Sending to an address and service, this function is called by the above functions.
send(to: UBID, service: UBID, message: Data)