setFeeAccount method

FeeBumpTransactionBuilder setFeeAccount (
  1. String feeAccount
)

Implementation

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