Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yorhodes committed Oct 27, 2023
1 parent 3643f63 commit 453fbe4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ export class CosmWasmCoreAdapter
}

async waitForMessageProcessed(
messageId: HexString,
destination: ChainName,
delayMs?: number,
maxAttempts?: number,
_messageId: HexString,
_destination: ChainName,
_delayMs?: number,
_maxAttempts?: number,
): Promise<void> {
throw new Error('Method not implemented.');
}
Expand Down
2 changes: 1 addition & 1 deletion typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export class CwHypTokenAdapter
}));
}

quoteGasPayment(destination: number): Promise<string> {
quoteGasPayment(_destination: number): Promise<string> {
throw new Error('Method not implemented.');
}

Expand Down

0 comments on commit 453fbe4

Please sign in to comment.