MsgBlock constructor

MsgBlock({
  1. required BlockHeader header,
  2. required List<MsgTx> transactions,
})

Creates a new MsgBlock message.

Implementation

MsgBlock({
  required this.header,
  required this.transactions,
});