Skip to content

Commit

Permalink
[CoinbasePro] Renaming a function
Browse files Browse the repository at this point in the history
  • Loading branch information
makarid committed Aug 21, 2023
1 parent 6074e44 commit ee2a32a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public List<CoinbaseProLedgerDto> getLedgerWithPagination(TradeHistoryParams par
String createdAtFinal = createdAt;

CoinbaseProLedger ledger =
getCoinbaseLedgerRawData(
getLedger(
fundingParams.getTransactionId(),
null,
null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public CoinbaseProWithdrawCryptoResponse withdrawCrypto(
}

/** https://docs.pro.coinbase.com/#get-an-account */
public CoinbaseProLedger getCoinbaseLedgerRawData(String accountId, Date startDate, Date endDate, String beforeId, String afterId, Integer limit, String profileId) throws CoinbaseProException, IOException {
public CoinbaseProLedger getLedger(String accountId, Date startDate, Date endDate, String beforeId, String afterId, Integer limit, String profileId) throws CoinbaseProException, IOException {
return decorateApiCall(
() ->
coinbasePro.ledger(
Expand Down

0 comments on commit ee2a32a

Please sign in to comment.