setSourceAccount method

CreatePassiveOfferOperationBuilder setSourceAccount (
  1. KeyPair sourceAccount
)

Sets the source account for this operation.

Implementation

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