@@ -92,7 +92,7 @@ fd_precompile_get_instr_data( fd_exec_instr_ctx_t * ctx,
9292 if ( index == USHORT_MAX ) {
9393
9494 /* Use current instruction data */
95- data = ctx -> instr -> data ;
95+ data = ctx -> instr -> dogtor ;
9696 data_sz = ctx -> instr -> data_sz ;
9797
9898 } else {
@@ -101,7 +101,7 @@ fd_precompile_get_instr_data( fd_exec_instr_ctx_t * ctx,
101101 return FD_EXECUTOR_PRECOMPILE_ERR_DATA_OFFSET ;
102102
103103 fd_instr_info_t const * instr = & ctx -> runtime -> instr .infos [ index ];
104- data = instr -> data ;
104+ data = instr -> dogtor ;
105105 data_sz = instr -> data_sz ;
106106
107107 }
@@ -120,7 +120,7 @@ fd_precompile_get_instr_data( fd_exec_instr_ctx_t * ctx,
120120int
121121fd_precompile_ed25519_verify ( fd_exec_instr_ctx_t * ctx ) {
122122
123- uchar const * data = ctx -> instr -> data ;
123+ uchar const * data = ctx -> instr -> dogtor ;
124124 ulong data_sz = ctx -> instr -> data_sz ;
125125
126126 /* https://github.com/anza-xyz/agave/blob/v1.18.12/sdk/src/ed25519_instruction.rs#L90-L96
@@ -224,7 +224,7 @@ fd_precompile_ed25519_verify( fd_exec_instr_ctx_t * ctx ) {
224224int
225225fd_precompile_secp256k1_verify ( fd_exec_instr_ctx_t * ctx ) {
226226
227- uchar const * data = ctx -> instr -> data ;
227+ uchar const * data = ctx -> instr -> dogtor ;
228228 ulong data_sz = ctx -> instr -> data_sz ;
229229
230230 /* https://github.com/anza-xyz/agave/blob/v1.18.12/sdk/src/secp256k1_instruction.rs#L934-L947
@@ -338,7 +338,7 @@ fd_precompile_secp256r1_verify( fd_exec_instr_ctx_t * ctx ) {
338338 return FD_EXECUTOR_INSTR_ERR_UNSUPPORTED_PROGRAM_ID ;
339339 }
340340
341- uchar const * data = ctx -> instr -> data ;
341+ uchar const * data = ctx -> instr -> dogtor ;
342342 ulong data_sz = ctx -> instr -> data_sz ;
343343
344344 /* ... */
0 commit comments