tendermint-rpc: Fix unused variable name

This commit is contained in:
willclarktech 2021-06-08 17:06:20 +02:00
parent a172327a2a
commit 7dd7a617bf
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7

View File

@ -33,7 +33,7 @@ export class Tendermint33Client {
// (our CI) when skipping the status call before doing other queries. Sleeping a little
// while did not help. Thus we query the version as a way to say "hi" to the backend,
// even in cases where we don't use the result.
const version = await this.detectVersion(rpcClient);
const _version = await this.detectVersion(rpcClient);
return new Tendermint33Client(rpcClient);
}