diff --git a/docs/src/apps/jsonrpc-api.md b/docs/src/apps/jsonrpc-api.md index a9792efab9..dbd590c856 100644 --- a/docs/src/apps/jsonrpc-api.md +++ b/docs/src/apps/jsonrpc-api.md @@ -466,6 +466,7 @@ The result field will be an object with the following fields: - `preBalances: ` - array of u64 account balances from before the transaction was processed - `postBalances: ` - array of u64 account balances after the transaction was processed - `innerInstructions: ` - List of [inner instructions](#inner-instructions-structure) or omitted if inner instruction recording was not yet enabled during this transaction + - `logMessages: ` - array of string log messages or omitted if log message recording was not yet enabled during this transaction - DEPRECATED: `status: ` - Transaction status - `"Ok": ` - Transaction was successful - `"Err": ` - Transaction failed with TransactionError @@ -501,6 +502,7 @@ Result: "err": null, "fee": 5000, "innerInstructions": [], + "logMessages": [], "postBalances": [ 499998932500, 26858640, @@ -582,6 +584,7 @@ Result: "err": null, "fee": 5000, "innerInstructions": [], + "logMessages": [], "postBalances": [ 499998932500, 26858640, @@ -830,6 +833,7 @@ N encoding attempts to use program-specific instruction parsers to return more h - `preBalances: ` - array of u64 account balances from before the transaction was processed - `postBalances: ` - array of u64 account balances after the transaction was processed - `innerInstructions: ` - List of [inner instructions](#inner-instructions-structure) or omitted if inner instruction recording was not yet enabled during this transaction + - `logMessages: ` - array of string log messages or omitted if log message recording was not yet enabled during this transaction - DEPRECATED: `status: ` - Transaction status - `"Ok": ` - Transaction was successful - `"Err": ` - Transaction failed with TransactionError