Skip to content

Commit

Permalink
Fix types of get_btc_address database api method
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklatkovich committed Nov 12, 2019
1 parent 884b87b commit be5186f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/echo/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default class Api {
getBlockHeader(blockNum: number): Promise<BlockHeader>;
getBlockRewards(blockNum: typeof uint32["__TInput__"]): Promise<unknown>;
getBlockVirtualOperations(blockNum: number): any;
getBtcAddresses(accountId: string): Promise<Array<BtcAddress>>;
getBtcAddress(accountId: string): Promise<Array<BtcAddress>>;
getBtcDepositScript(btcDepositId: string): Promise<String>;
getChainId(force?: boolean): Promise<string>
getChainProperties(force?: boolean): Promise<ChainProperties>;
Expand Down

0 comments on commit be5186f

Please sign in to comment.