MsgPruneAcknowledgements.deserialize constructor

MsgPruneAcknowledgements.deserialize(
  1. List<int> bytes
)

Implementation

factory MsgPruneAcknowledgements.deserialize(List<int> bytes) {
  final decode = CosmosProtocolBuffer.decode(bytes);
  return MsgPruneAcknowledgements(
      portId: decode.getField(1),
      channelId: decode.getField(2),
      limit: decode.getField(3),
      signer: decode.getField(4));
}