Merge pull request #1496 from twhy/patch-1

Fix typo in comment
This commit is contained in:
Simon Warta 2023-10-26 16:12:39 +02:00 committed by GitHub
commit 9f33cd31de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 and only if code is 0. */
readonly code: number;
readonly transactionHash: string;
readonly events: readonly Event[];