setMaxOperationFee method

TransactionBuilder setMaxOperationFee(
  1. int maxOperationFee
)

Implementation

TransactionBuilder setMaxOperationFee(int maxOperationFee) {
  if (maxOperationFee < AbstractTransaction.MIN_BASE_FEE) {
    throw new Exception(
        "maxOperationFee cannot be smaller than the BASE_FEE (${AbstractTransaction.MIN_BASE_FEE}): $maxOperationFee");
  }
  _mMaxOperationFee = maxOperationFee;
  return this;
}