setCallGasLimit method

  1. @override
IUserOperationBuilder setCallGasLimit(
  1. BigInt gas
)
override

Sets the call gas limit of the operation.

Implementation

@override
IUserOperationBuilder setCallGasLimit(BigInt gas) {
  _currentOp.callGasLimit = gas;
  return this;
}