linera-protocol
linera-protocol copied to clipboard
Put transactions (operations and messages) in a single collection.
A block should contain a single Vec<Transaction> where
enum Transaction {
Operation(Operation),
IncomingMessage(IncomingMessage),
}
which can be in any order.
See also #364
This could also help adding scripts eventually.