This commit is contained in:
Benny Neugebauer
2019-01-29 08:16:59 +01:00
parent 1eabe68093
commit fb63f59f6b
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ client.getAccount("abcdef", (error: Error, account: coinbase.Account): void => {
account.getSell("abcdef", (error: Error, deposit: coinbase.Sell): void => undefined);
account.getSells((error: Error, deposit: coinbase.Sell[]): void => undefined);
account.getSells(null, (error: Error, deposit: coinbase.Sell[]): void => undefined);
account.getTransaction("abcdef", (error: Error, deposit: coinbase.Transaction): void => undefined);

View File

@@ -678,7 +678,7 @@ export class Account implements Resource {
* Lists sells for an account.
* Scope: wallet:sells:read
*/
getSells(cb: (error: Error, result: Sell[]) => void): void;
getSells(opts: null, cb: (error: Error, result: Sell[]) => void): void;
/**
* Show an individual sell.