setSourceAccount method

PathPaymentOperationBuilder setSourceAccount (
  1. KeyPair sourceAccount
)

Sets the source account for this operation.

Implementation

PathPaymentOperationBuilder setSourceAccount(KeyPair sourceAccount) {
  _mSourceAccount =
      checkNotNull(sourceAccount, "sourceAccount cannot be null");
  return this;
}