setHardLimits method

Future<void> setHardLimits()

It sets the limits of operations to the hard limits of the chain

Implementation

Future<void> setHardLimits() async {
  await Future.wait(operations.map((operation) async {
    await operation.setLimits(OperationHardLimitsSetterVisitor());
  }));
}