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.");
  }
  _mFeeAccount = MuxedAccount.fromAccountId(feeAccount);
  return this;
}