We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7596a46 commit 1886299Copy full SHA for 1886299
packages/tendermint-rpc/src/tendermintclient.ts
@@ -36,7 +36,7 @@ export async function connectComet(endpoint: string | HttpEndpoint): Promise<Com
36
const version = (await tm37Client.status()).nodeInfo.version;
37
if (version.startsWith("0.37.")) {
38
out = tm37Client;
39
- } else if (version.startsWith("0.38.")) {
+ } else if (version.startsWith("0.38.") || version.startsWith("1.0.")) {
40
tm37Client.disconnect();
41
out = await Comet38Client.connect(endpoint);
42
} else {
0 commit comments