From cc2a10de2c4abe8a3f58e8838284280a6ddada6e Mon Sep 17 00:00:00 2001 From: Tom Wang Date: Thu, 26 Oct 2023 21:32:39 +0800 Subject: [PATCH] Fix typo in comment --- packages/stargate/src/stargateclient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/stargate/src/stargateclient.ts b/packages/stargate/src/stargateclient.ts index 69ff4582..d315cd12 100644 --- a/packages/stargate/src/stargateclient.ts +++ b/packages/stargate/src/stargateclient.ts @@ -108,7 +108,7 @@ export interface DeliverTxResponse { readonly height: number; /** The position of the transaction within the block. This is a 0-based index. */ readonly txIndex: number; - /** Error code. The transaction suceeded iff code is 0. */ + /** Error code. The transaction suceeded if code is 0. */ readonly code: number; readonly transactionHash: string; readonly events: readonly Event[];