From a468291dce23d08081f4af465fcab56171058a6b Mon Sep 17 00:00:00 2001 From: Maksandre Date: Tue, 04 Oct 2022 21:58:37 +0000 Subject: [PATCH] Fix eslint warning --- --- a/tests/src/util/playgrounds/unique.ts +++ b/tests/src/util/playgrounds/unique.ts @@ -2161,7 +2161,7 @@ */ async stake(signer: TSigner, amountToStake: bigint, label?: string): Promise { if(typeof label === 'undefined') label = `${signer.address} amount: ${amountToStake}`; - const stakeResult = await this.helper.executeExtrinsic( + const _stakeResult = await this.helper.executeExtrinsic( signer, 'api.tx.appPromotion.stake', [amountToStake], true, ); @@ -2178,7 +2178,7 @@ */ async unstake(signer: TSigner, label?: string): Promise { if(typeof label === 'undefined') label = `${signer.address}`; - const unstakeResult = await this.helper.executeExtrinsic( + const _unstakeResult = await this.helper.executeExtrinsic( signer, 'api.tx.appPromotion.unstake', [], true, ); -- gitstuff