Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Replace operations with messages #1

@nathanielhourt

Description

@nathanielhourt

Message type looks something like this:

/**
 * A message has a header that defines who sent it and
 * who will be processing it.  The message content is a binary blob whose
 * type is determined by 'type', which is dynamic and defined by
 * the scripting language.
 */
struct message {
  account        sender;
  account        to;
  vector<acct>   cc;
  message_type   type;
  vector<byte>   data;
};

account is a string typedef for now, will become a fixed-length string in the future.
message_type is a string typedef.

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions