setMuxedFeeAccount method

FeeBumpTransactionBuilder setMuxedFeeAccount (
  1. MuxedAccount feeAccount
)

Implementation

FeeBumpTransactionBuilder setMuxedFeeAccount(MuxedAccount feeAccount) {
  if (_mFeeAccount != null) {
    throw new Exception("fee account has been already been set.");
  }
  _mFeeAccount = checkNotNull(feeAccount, "feeAccount cannot be null");
  return this;
}