Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
xinyu-li-cb committed Aug 9, 2024
1 parent c113325 commit 992e831
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/coinbase/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import {
} from "./../client/api";
import { Address } from "./address";
import { Wallet } from "./wallet";
import { HistoricalBalance } from "./historical_balance"
import { HistoricalBalance } from "./historical_balance";

export type AssetAPIClient = {
/**
Expand Down Expand Up @@ -786,6 +786,6 @@ export type CreateTradeOptions = {
* Result of ListHistoricalBalances.
*/
export type ListHistoricalBalancesResult = {
historicalBalances: HistoricalBalance[],
nextPageToken: string,
}
historicalBalances: HistoricalBalance[];
nextPageToken: string;
};

Check failure on line 791 in src/coinbase/types.ts

View workflow job for this annotation

GitHub Actions / lint

Insert `⏎`
1 change: 1 addition & 0 deletions src/tests/address_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
externalAddressApiMock,
} from "./utils";
import Decimal from "decimal.js";
import { randomUUID } from "crypto";

describe("Address", () => {
const newAddress = newAddressModel("", randomUUID(), Coinbase.networks.EthereumHolesky);
Expand Down

0 comments on commit 992e831

Please sign in to comment.