From 50f32aef206266a6f1c19004e0d10e6457f558b8 Mon Sep 17 00:00:00 2001 From: quasisamurai Date: Wed, 13 Sep 2023 19:54:30 +0400 Subject: [PATCH] fix query --- src/helpers/cosmos.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/cosmos.ts b/src/helpers/cosmos.ts index ce72045b..1e5970db 100644 --- a/src/helpers/cosmos.ts +++ b/src/helpers/cosmos.ts @@ -403,7 +403,7 @@ export class CosmosWrapper { async queryMaxTxsAllowed(): Promise { try { const req = await axios.get( - `${this.sdk.url}/neutron/interchaintxs/v1/params`, + `${this.sdk.url}/neutron/interchaintxs/params`, {}, ); return req.data.params.msg_submit_tx_max_messages;