From 41768617a9130828339f3c231322c176ce19fd1d Mon Sep 17 00:00:00 2001 From: fragosti Date: Wed, 15 Aug 2018 14:41:09 -0700 Subject: Update test fixtures --- packages/connect/src/http_client.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'packages/connect/src/http_client.ts') diff --git a/packages/connect/src/http_client.ts b/packages/connect/src/http_client.ts index 10c956ff8..7783af876 100644 --- a/packages/connect/src/http_client.ts +++ b/packages/connect/src/http_client.ts @@ -21,6 +21,7 @@ import { OrdersResponse, PagedRequestOpts, PaginatedCollection, + FeeRecipientsResponse, } from './types'; import { relayerResponseJsonParsers } from './utils/relayer_response_json_parsers'; @@ -140,7 +141,7 @@ export class HttpClient implements Client { /** * Retrieve the list of fee recipient addresses used by */ - public async getFeeRecipientsAsync(): Promise> { + public async getFeeRecipientsAsync(): Promise { return this._requestAsync('/fee_recipients', HttpRequestType.Get); } -- cgit