forAccount method

TransactionsRequestBuilder forAccount (
  1. KeyPair account
)

Builds request to GET /accounts/account/transactions

Implementation

TransactionsRequestBuilder forAccount(KeyPair account) {
  account = checkNotNull(account, "account cannot be null");
  this.setSegments(["accounts", account.accountId, "transactions"]);
  return this;
}