setVerificationGasLimit method

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

Sets the verification gas limit of the operation.

Implementation

@override
IUserOperationBuilder setVerificationGasLimit(BigInt gas) {
  _currentOp.verificationGasLimit = gas;
  return this;
}