Fix typo in comment

This commit is contained in:
Tom Wang
2023-10-26 21:32:39 +08:00
committed by GitHub
parent 6a877027f6
commit cc2a10de2c
+1 -1
View File
@@ -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[];