Skip to content

Commit

Permalink
Delete unused argument (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
selankon authored Jul 29, 2024
1 parent d42d8fc commit b34b4dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/extended-sdk/src/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class ExtendedSDKClient extends VocdoniSDKClient {

txInfo = (txHash: string) => ChainAPI.txInfo(this.url, txHash)
txInfoByBlock = (blockHeight: number, txIndex: number) => ChainAPI.txInfoByBlock(this.url, blockHeight, txIndex)
txByIndex = (index: number, txIndex: number) => ChainAPI.txByIndex(this.url, index)
txByIndex = (index: number) => ChainAPI.txByIndex(this.url, index)
txList = (page?: number) => ChainAPI.txList(this.url, page)

validatorsList = () => ChainAPI.validatorsList(this.url)
Expand Down

0 comments on commit b34b4dc

Please sign in to comment.