From 453fbe452dad63e4bb703c8948b724b42df3549c Mon Sep 17 00:00:00 2001 From: Yorke Rhodes Date: Fri, 27 Oct 2023 14:05:15 -0400 Subject: [PATCH] Fix lint --- typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts | 8 ++++---- typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts b/typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts index 0d4c340935..a6ac5fb077 100644 --- a/typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts +++ b/typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts @@ -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 { throw new Error('Method not implemented.'); } diff --git a/typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts b/typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts index 77c82d8262..6d6bf5349d 100644 --- a/typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts +++ b/typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts @@ -249,7 +249,7 @@ export class CwHypTokenAdapter })); } - quoteGasPayment(destination: number): Promise { + quoteGasPayment(_destination: number): Promise { throw new Error('Method not implemented.'); }