File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @solana/errors ' : patch
3+ ---
4+
5+ The ` innerInstructions ` property of JSON-RPC errors used snake case rather than camelCase for ` stackHeight ` and ` programId ` . This has been corrected.
Original file line number Diff line number Diff line change @@ -61,21 +61,21 @@ export interface RpcSimulateTransactionResult {
6161 accounts : number [ ] ;
6262 data : string ;
6363 programIdIndex : number ;
64- stack_height ?: number ;
64+ stackHeight ?: number ;
6565 }
6666 | {
6767 // Parsed
6868 parsed : unknown ;
6969 program : string ;
70- program_id : string ;
71- stack_height ?: number ;
70+ programId : string ;
71+ stackHeight ?: number ;
7272 }
7373 | {
7474 // PartiallyDecoded
7575 accounts : string [ ] ;
7676 data : string ;
77- program_id : string ;
78- stack_height ?: number ;
77+ programId : string ;
78+ stackHeight ?: number ;
7979 }
8080 ) [ ] ;
8181 } [ ]
You can’t perform that action at this time.
0 commit comments